fix a typo

This commit is contained in:
Garrus MacTavish
2013-05-08 01:06:11 +08:00
parent 7ee0315f18
commit 0d35ab368b

View File

@@ -55,7 +55,7 @@ class RecordProxy extends Record
/**
* @var bool
*/
protected $_isDirrty = false;
protected $_isDirty = false;
/**
* @var bool
@@ -75,7 +75,7 @@ class RecordProxy extends Record
// that extends the Record class
if (null !== $data) {
$this->_isInitialized = true;
$this->_isDirrty = true;
$this->_isDirty = true;
}
}
@@ -88,7 +88,7 @@ class RecordProxy extends Record
*/
public function __set($name, $value)
{
$this->_isDirrty = true;
$this->_isDirty = true;
parent::__set($name, $value);
}
}