Changeset 377
- Timestamp:
- Mar 11, 2010, 8:58:58 AM (15 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/export/export.php
r376 r377 23 23 { 24 24 $DbResult = $this->Database->query('SELECT * FROM `Export` WHERE `Id`='.$this->Id); 25 if($DbResult->num_rows == 0) die('Export '.$this->Id.' neexistuje'); 25 26 $this->Export = $DbResult->fetch_assoc(); 26 27 -
trunk/export/process_aowow_export.php
r366 r377 8 8 9 9 LoadCommandLineParameters(); 10 11 12 10 13 11 if(!array_key_exists('AoWoWExportId', $Config)) die('You have to specify ExportId in your config file.'); -
trunk/includes/global.php
r376 r377 32 32 $System->Init(); 33 33 $User = new User(); 34 $User->Restore();35 34 36 35 function GetMicrotime() -
trunk/includes/user.php
r376 r377 18 18 function __construct() 19 19 { 20 $this->Restore();20 if(isset($_SESSION)) $this->Restore(); 21 21 } 22 22 23 23 function __destroy() 24 24 { 25 $this->Store();25 if(isset($_SESSION)) $this->Store(); 26 26 } 27 27
Note:
See TracChangeset
for help on using the changeset viewer.