Changeset 5775 for temp/trunk


Ignore:
Timestamp:
2006/09/25 17:18:51 (20 years ago)
Author:
kakinaka
Message:

blank

File:
1 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/html/admin/system/bkup.php

    r5774 r5775  
    298298                WHERE (c.relname=?) AND (c.oid=a.attrelid) AND (a.atttypid=t.oid) AND a.attnum > 0 
    299299                ORDER BY fldnum"; 
     300        $arrRet = $objQuery->getAll($sql, array($table_name)); 
    300301    }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     
    305306    return sfSwapArray($arrRet); 
    306307} 
Note: See TracChangeset for help on using the changeset viewer.