Changeset 2053 for trunk/system/libraries/ORM.php
- Timestamp:
- 02/15/2008 08:11:32 AM (9 months ago)
- Files:
-
- 1 modified
-
trunk/system/libraries/ORM.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/libraries/ORM.php
r2026 r2053 674 674 } 675 675 676 // Load the first result, if there is only one result677 676 if ($result->count() === 1) 678 677 { 678 // Load the first result, if there is only one result 679 679 $this->object = $result->current(); 680 680 } 681 681 else 682 682 { 683 // Clear the object, nothing was loaded 683 684 $this->clear(); 684 685 }
