Changeset 2053
- Timestamp:
- 02/15/2008 08:11:32 AM (8 months ago)
- Location:
- trunk/system
- Files:
-
- 2 modified
-
config/database.php (modified) (1 diff)
-
libraries/ORM.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/config/database.php
r1821 r2053 7 7 * will be used. 8 8 * 9 * Each group can be connected to independ antly, and multiple groups can be9 * Each group can be connected to independently, and multiple groups can be 10 10 * connected at once. 11 11 * -
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 }
