Changeset 1749 for trunk/UPGRADE
- Timestamp:
- 03/06/2007 02:08:42 PM (21 months ago)
- Files:
-
- 1 modified
-
trunk/UPGRADE (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/UPGRADE
r1729 r1749 4 4 5 5 !!!IMPORTANT!!! 6 7 After installing the framework, remember to delete everything under8 your PRADO application's assets and runtime directories.9 10 6 11 7 The following upgrading instructions are cumulative. That is, … … 16 12 Upgrading from v3.1a 17 13 --------------------- 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 } 20 21 21 22 Upgrading from v3.0.x
