Ignore:
Timestamp:
Mar 13, 2010, 9:42:12 PM (14 years ago)
Author:
george
Message:
  • Opraveno: Řádky z Lua souborů se chybně načítaly, pokud obsahovaly \" nebo ; uvnitř textu.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/global_function.php

    r380 r381  
    232232 
    233233  $Result = array();
    234   $DbResult = $Database->SQLCommand('SELECT * FROM `Group` ORDER BY `Name`');
     234  $DbResult = $Database->SQLCommand('SELECT *, UNIX_TIMESTAMP(`LastImport`) AS `LastImportTime` FROM `Group` ORDER BY `Name`');
    235235  while($DbRow = mysql_fetch_assoc($DbResult))
    236236  {
     
    238238    $Result[$DbRow['Id']] = $DbRow;
    239239  }
    240   $DbResult = $Database->SQLCommand('SELECT * FROM `GroupItem` ORDER BY DBCColumnIndex');
     240  $DbResult = $Database->SQLCommand('SELECT * FROM `GroupItem` ORDER BY `DBCColumnIndex`');
    241241  while($DbRow = mysql_fetch_assoc($DbResult))
    242242  {
Note: See TracChangeset for help on using the changeset viewer.