- Timestamp:
- 09/01/09 22:33:04 (1 year ago)
- Files:
-
- fActiveRecord.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
fActiveRecord.php
r692 r694 Hide Line Numbers 16 16 * @link http://flourishlib.com/fActiveRecord 17 17 * 18 * @version 1.0.0b40 18 * @version 1.0.0b41 19 * @changes 1.0.0b41 Fixed a bug in the last version that would cause issues with classes containing a custom class to table mapping [wb, 2009-09-01] 19 20 * @changes 1.0.0b40 Added a check to the configuration part of ::__construct() to ensure modelled tables have primary keys [wb, 2009-08-26] 20 21 * @changes 1.0.0b39 Changed `set{ColumnName}()` methods to return the record for method chaining, fixed a bug with loading by multi-column unique constraints, fixed a bug with ::load() [wb, 2009-08-26] … … 813 814 // If the features of this class haven't been set yet, do it 814 815 if (!isset(self::$configured[$class])) { 816 $this->configure(); 817 self::$configured[$class] = TRUE; 818 815 819 $table = fORM::tablize($class); 816 820 if (!fORMSchema::retrieve()->getKeys($table, 'primary')) { … … 823 827 ); 824 828 } 825 826 $this->configure();827 self::$configured[$class] = TRUE;828 829 829 830 // If the configuration was forced, prevent the post::__construct() hook from
