summaryrefslogtreecommitdiff
path: root/app/php/db
diff options
context:
space:
mode:
Diffstat (limited to 'app/php/db')
-rw-r--r--app/php/db/ActiveRecord.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/php/db/ActiveRecord.php b/app/php/db/ActiveRecord.php
index f5d06a3..49e862c 100644
--- a/app/php/db/ActiveRecord.php
+++ b/app/php/db/ActiveRecord.php
@@ -22,7 +22,7 @@ class ActiveRecord extends TActiveRecord {
if (property_exists($this, $name)) {
return $this->$name = $value;
}
- return parent::__set($this->_getMappedPropertyName($name), $value);
+ return parent::__set($name, $value);
}
}