Ignore:
Timestamp:
Feb 15, 2013, 11:02:13 PM (11 years ago)
Author:
chronos
Message:
  • Přidáno: Novinky na webu nyní mají titulek. U starých novinek se nastaví jako titulek jméno uživatele, jako to bylo dříve.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/UpdateTrace.php

    r508 r510  
    23952395}
    23962396
     2397function UpdateTo510($Manager)
     2398{     
     2399  global $System;
     2400 
     2401  $Manager->Execute('ALTER TABLE `News` ADD `Title` VARCHAR( 255 ) NOT NULL AFTER `Time`');
     2402  $Manager->Execute('UPDATE `News` SET `Title` = (SELECT `Name` FROM `User` AS `T` WHERE `T`.`ID` = `User`)');
     2403}
     2404
    23972405$Updates = array(
    23982406        498 => array('Revision' => 506, 'Function' => 'UpdateTo506'),
     2407        506 => array('Revision' => 510, 'Function' => 'UpdateTo510'),
    23992408);
    24002409
Note: See TracChangeset for help on using the changeset viewer.