Changeset 2053

Show
Ignore:
Timestamp:
02/15/2008 08:11:32 AM (8 months ago)
Author:
Shadowhand
Message:

Fixing some typos.

Location:
trunk/system
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/config/database.php

    r1821 r2053  
    77 * will be used. 
    88 * 
    9  * Each group can be connected to independantly, and multiple groups can be 
     9 * Each group can be connected to independently, and multiple groups can be 
    1010 * connected at once. 
    1111 * 
  • trunk/system/libraries/ORM.php

    r2026 r2053  
    674674                        } 
    675675 
    676                         // Load the first result, if there is only one result 
    677676                        if ($result->count() === 1) 
    678677                        { 
     678                                // Load the first result, if there is only one result 
    679679                                $this->object = $result->current(); 
    680680                        } 
    681681                        else 
    682682                        { 
     683                                // Clear the object, nothing was loaded 
    683684                                $this->clear(); 
    684685                        }