Changeset 5775 for temp/trunk
- Timestamp:
- 2006/09/25 17:18:51 (20 years ago)
- File:
-
- 1 edited
-
temp/trunk/html/admin/system/bkup.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
temp/trunk/html/admin/system/bkup.php
r5774 r5775 298 298 WHERE (c.relname=?) AND (c.oid=a.attrelid) AND (a.atttypid=t.oid) AND a.attnum > 0 299 299 ORDER BY fldnum"; 300 $arrRet = $objQuery->getAll($sql, array($table_name)); 300 301 }else if(DB_TYPE == "mysql"){ 301 $sql = "SHOW COLUMNS FROM ?";302 }303 304 $arrRet = $objQuery->getAll($sql, array($table_name));302 $sql = "SHOW COLUMNS FROM $table_name"; 303 $arrRet = $objQuery->getAll($sql); 304 } 305 305 306 return sfSwapArray($arrRet); 306 307 }
Note: See TracChangeset
for help on using the changeset viewer.
