Ignore:
Timestamp:
2013/03/28 10:49:57 (13 years ago)
Author:
Seasoft
Message:

#2213 (バックアップ管理 プラグインのテーブルをバックアップできずエラーとなる)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/SC_Query.php

    r22567 r22771  
    774774    { 
    775775        if (strlen($where) <= 0) { 
    776             $sqlde = "DELETE FROM $table"; 
     776            $sqlde = 'DELETE FROM "' . $table . '"'; 
    777777        } else { 
    778             $sqlde = "DELETE FROM $table WHERE $where"; 
     778            $sqlde = 'DELETE FROM "' . $table . '" WHERE ' . $where; 
    779779        } 
    780780        $ret = $this->query($sqlde, $arrWhereVal, false, null, MDB2_PREPARE_MANIP); 
Note: See TracChangeset for help on using the changeset viewer.