Changeset 46
- Timestamp:
- 05/15/2007 02:59:37 PM (19 months ago)
- Files:
-
- 1 modified
-
branches/1.0/system/database/DB_active_rec.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/system/database/DB_active_rec.php
r44 r46 218 218 if ( ! $this->_has_operator($k)) 219 219 { 220 $k .= '=';220 $k = '`' . $k . '` ='; 221 221 } 222 222 223 223 $v = ' '.$this->escape($v); 224 224 } 225 225 else 226 { 227 $k = '`' . $k . '` IS NULL'; 228 } 229 226 230 $this->ar_where[] = $prefix.$k.$v; 227 231 }
