diff options
Diffstat (limited to 'models')
-rw-r--r-- | models/User.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/models/User.php b/models/User.php index 1c1fe64..82a1a9a 100644 --- a/models/User.php +++ b/models/User.php @@ -91,7 +91,6 @@ class User extends \lithium\data\Model { joindate = today, accesslevel = "user" */ - public function updateuser($entity, $data) { $conditions = array('_id' => $entity->_id, 'state' => 'default'); @@ -322,7 +321,6 @@ class User extends \lithium\data\Model { $conditions = array('_id' => $entity['_id']); $result = User::update($updateData, $conditions, array('atomic' => false)); return $result; - } |