a tiny mvc framework for php using php-activerecord
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

updating changelog and bumping version to 1.0

Kien La a8a88909 975645ef

+15 -7
+1 -1
lib/php-activerecord/ActiveRecord.php
··· 2 2 if (!defined('PHP_VERSION_ID') || PHP_VERSION_ID < 50300) 3 3 die('PHP ActiveRecord requires PHP 5.3 or higher'); 4 4 5 - define('PHP_ACTIVERECORD_VERSION_ID','1.0rc1'); 5 + define('PHP_ACTIVERECORD_VERSION_ID','1.0'); 6 6 7 7 require 'lib/Singleton.php'; 8 8 require 'lib/Config.php';
+13 -5
lib/php-activerecord/CHANGELOG
··· 1 - Version 1.0 - June 1, 2010 1 + Version 1.0 - June 27, 2010 2 2 3 - - fixed validates_numericality_of to not ignore other options when only_integer is present and matches 4 - - fixed set methods on DateTime objects to properly flag attributes as dirty 5 - - fixed DateTime attributes to be serialized as strings 3 + - d2bed65 fixed an error with eager loading when no records exist 4 + - c225942 fixed set methods on DateTime objects to properly flag attributes as dirty 5 + - 3e26749 fixed a memory leak when using validations 6 + - 46a1219 fixed problem with some model functionality not working correctly after being deserialized 7 + - 3e26749 fixed validates_numericality_of to not ignore other options when only_integer is present and matches 8 + - 53ad5ec fixed ambiguous id error when finding by pk with a join option 9 + - 26e40f4 fixed conditions to accept DateTime values 10 + - 41e52fe changed serialization to serialize datetime fields as strings instead of the actual DateTime objects 11 + - dbee94b Model::transaction() now returns true if commit was successful otherwise false 12 + 13 + Versio 1.0 RC1 - May 7, 2010 14 + 6 15 - support for Oracle 7 16 - support for PostgreSQL 8 17 - added delegators ··· 14 23 - added validates_uniqueness_of 15 24 - added dynamic count_by 16 25 - added eager loading 17 - - and many bug fixes
+1 -1
lib/php-activerecord/README.md
··· 1 1 # PHP ActiveRecord # 2 2 3 - Version 1.0 RC1 3 + Version 1.0 4 4 5 5 by Kien La and Jacques Fuentes 6 6