1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 12:20:44 +02:00

e107 class / e_model / preference handler fixes

This commit is contained in:
secretr
2009-09-08 12:13:00 +00:00
parent 668c25c3ed
commit 24d3826258
3 changed files with 30 additions and 18 deletions

View File

@@ -9,8 +9,8 @@
* e107 Base Model
*
* $Source: /cvs_backup/e107_0.8/e107_handlers/model_class.php,v $
* $Revision: 1.7 $
* $Date: 2009-09-04 17:04:14 $
* $Revision: 1.8 $
* $Date: 2009-09-08 12:13:00 $
* $Author: secretr $
*/
@@ -315,7 +315,7 @@ class e_model
*/
public function setPostedData($key = null, $data = null, $strict = false)
{
return $this->setData($key, $data, $strict, '_posted_data');
return $this->_setData($key, $data, $strict, '_posted_data');
}
/**