1
0
mirror of https://github.com/moparisthebest/user_sql synced 2024-08-13 16:53:48 -04:00

Fix a few bugs introduced by last change...

This commit is contained in:
Andreas Boehler 2012-12-06 14:28:16 +01:00
parent 39a19ae043
commit fcc0fe5c45

View File

@ -81,12 +81,12 @@ class OC_USER_SQL extends OC_User_Backend implements OC_User_Interface {
public function setPassword ( $uid, $password ) {
// Update the user's password - this might affect other services, that user the same database, as well
if(!this->db_conn)
if(!$this->db_conn)
{
return false;
}
$query = "UPDATE $this->sql_table SET $this->sql_column_password = ENCRYPT('$password') WHERE $sql_column_username = '$uid'";
$query = "UPDATE $this->sql_table SET $this->sql_column_password = ENCRYPT('$password') WHERE $this->sql_column_username = '$uid'";
$result = $this->db->prepare($query);
if(!$result->execute())
{