diff options
author | xue <> | 2008-01-04 22:20:08 +0000 |
---|---|---|
committer | xue <> | 2008-01-04 22:20:08 +0000 |
commit | dba0eef8ab3986cdc84d6b9fec38cb9017a989c2 (patch) | |
tree | 607c6ef078640c8820c3235f3ec5803d623bc9c2 | |
parent | b42131fe5e9769234afa27702e35d507cac0ba96 (diff) |
fixed #707.
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | framework/Data/SqlMap/DataMapper/TPropertyAccess.php | 5 |
2 files changed, 2 insertions, 4 deletions
@@ -1,5 +1,6 @@ Version 3.1.2 To be released ============================ +BUG: Ticket#707 - TPropertyAccess sets property twice on object when using setters (Qiang) BUG: Ticket#719 - TAutoCompleter should not trigger Validation if CausesValidation=False (Christophe) BUG: Ticket#744 - Callback error handling is improved (Qiang) BUG: Ticket#750 - The "expire" parameter is used inconsistently in cache modules (Qiang) diff --git a/framework/Data/SqlMap/DataMapper/TPropertyAccess.php b/framework/Data/SqlMap/DataMapper/TPropertyAccess.php index c89bcb75..b1444163 100644 --- a/framework/Data/SqlMap/DataMapper/TPropertyAccess.php +++ b/framework/Data/SqlMap/DataMapper/TPropertyAccess.php @@ -138,10 +138,7 @@ class TPropertyAccess {
$setter = 'set'.$prop;
if(is_callable(array($object, $setter)))
- {
- if($object->{$setter}($value) === null)
- $object->{$prop} = $value;
- }
+ $object->{$setter}($value);
else
$object->{$prop} = $value;
}
|