Changeset 1749 for trunk/UPGRADE

Show
Ignore:
Timestamp:
03/06/2007 02:08:42 PM (21 months ago)
Author:
xue
Message:

removed getRecordFinder.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/UPGRADE

    r1729 r1749  
    44 
    55!!!IMPORTANT!!! 
    6  
    7 After installing the framework, remember to delete everything under 
    8 your PRADO application's assets and runtime directories. 
    9  
    106 
    117The following upgrading instructions are cumulative. That is, 
     
    1612Upgrading from v3.1a 
    1713--------------------- 
    18 - TActiveRecord::getRecordFinder() is deprecated in favour of TActiveRecord::finder(). 
    19  
     14- The signature of TActiveRecord::finder() is changed. All TActiveRecord-descendant 
     15  classes that override this method will be affected. Please use the 
     16  following code to override the method:         
     17        public static function finder($className=__CLASS__) 
     18        { 
     19                return parent::finder($className); 
     20        } 
    2021 
    2122Upgrading from v3.0.x