Changeset 12518 for branches/dev/data
- Timestamp:
- 2007/05/10 20:16:23 (19 years ago)
- File:
-
- 1 edited
-
branches/dev/data/class/SC_SelectSql.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/dev/data/class/SC_SelectSql.php
r12464 r12518 196 196 } 197 197 } 198 199 function setWhereOR($where){ 200 if ($where != "") { 201 if( $this->where ) { 202 203 $this->where .= " OR " . $where; 204 205 } else { 206 207 $this->where = "WHERE " . $where; 208 } 209 } 210 } 198 211 199 212 function setOrder($order){
Note: See TracChangeset
for help on using the changeset viewer.
