Changeset 3094 for trunk/modules/auth

Show
Ignore:
Timestamp:
07/12/2008 11:43:07 AM (5 months ago)
Author:
Shadowhand
Message:

Fixed a bug in Auth/ORM/User_Model that prevented find_all() from working. Thanks alexsancho!

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/modules/auth/models/auth_user.php

    r3092 r3094  
    8080        protected function load_result($array = FALSE) 
    8181        { 
    82                 parent::load_result($array); 
     82                $result = parent::load_result($array); 
    8383 
    8484                if ($array === FALSE) 
     
    8888                } 
    8989 
    90                 return $this; 
     90                return $result; 
    9191        } 
    9292