Changeset 22771 for branches/version-2_13-dev/data/class/SC_Query.php
- Timestamp:
- 2013/03/28 10:49:57 (13 years ago)
- File:
-
- 1 edited
-
branches/version-2_13-dev/data/class/SC_Query.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_13-dev/data/class/SC_Query.php
r22567 r22771 774 774 { 775 775 if (strlen($where) <= 0) { 776 $sqlde = "DELETE FROM $table";776 $sqlde = 'DELETE FROM "' . $table . '"'; 777 777 } else { 778 $sqlde = "DELETE FROM $table WHERE $where";778 $sqlde = 'DELETE FROM "' . $table . '" WHERE ' . $where; 779 779 } 780 780 $ret = $this->query($sqlde, $arrWhereVal, false, null, MDB2_PREPARE_MANIP);
Note: See TracChangeset
for help on using the changeset viewer.
