diff options
author | godzilla80@gmx.net <> | 2009-05-11 07:44:55 +0000 |
---|---|---|
committer | godzilla80@gmx.net <> | 2009-05-11 07:44:55 +0000 |
commit | 6ef4cdbaece53185ff3924b26461fd1bffd8127a (patch) | |
tree | 9cb58b5330f14b539179d89903676c15c6fb7d72 | |
parent | 5d276345aa8fc6eefed3793d59cc73ae0d0247b5 (diff) |
Change visibilty of TActiveRecord class member "_invalidFinderResult" from private to protected to concern serialization
-rw-r--r-- | framework/Data/ActiveRecord/TActiveRecord.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Data/ActiveRecord/TActiveRecord.php b/framework/Data/ActiveRecord/TActiveRecord.php index 9ec1a4b3..af171bbd 100644 --- a/framework/Data/ActiveRecord/TActiveRecord.php +++ b/framework/Data/ActiveRecord/TActiveRecord.php @@ -196,7 +196,7 @@ abstract class TActiveRecord extends TComponent * @var TActiveRecordInvalidFinderResult * @since 3.1.5 */ - private $_invalidFinderResult = null; + protected $_invalidFinderResult = null; // use protected so that serialization is fine /** * Prevent __call() method creating __sleep() when serializing. |