Changeset 278 for trunk/trax/vendor/trax
- Timestamp:
- 01/29/07 12:12:11 (5 years ago)
- Files:
-
- 1 modified
-
trunk/trax/vendor/trax/active_record.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/trax/vendor/trax/active_record.php
r275 r278 1382 1382 } 1383 1383 $objects[$objects_key] = $object; 1384 unset($object);1385 1384 # If callback is defined in model run it. 1386 1385 # this will probably hurt performance... 1387 if(method_exists($this, 'after_find')) { 1388 $this->after_find(); 1389 } 1386 if(method_exists($object, 'after_find')) { 1387 $object->after_find(); 1388 } 1389 unset($object); 1390 1390 } 1391 1391 return $objects;
