]> git.mxchange.org Git - friendica.git/commitdiff
missing paren
authorMike Macgirvin <mike@macgirvin.com>
Thu, 9 Sep 2010 03:52:43 +0000 (20:52 -0700)
committerMike Macgirvin <mike@macgirvin.com>
Thu, 9 Sep 2010 03:52:43 +0000 (20:52 -0700)
mod/settings.php

index 9e7a6654edaf10df73db109231f400d690bd97ec..fbeee7768514111b62d8d3cef559b7d411063cfe 100644 (file)
@@ -39,7 +39,8 @@ function settings_post(&$a) {
                        $password = hash('whirlpool',$newpass);
                        $r = q("UPDATE `user` SET `password` = '%s' WHERE `uid` = %d LIMIT 1",
                                dbesc($password),
-                               intval(get_uid());
+                               intval(get_uid())
+                       );
                        if($r)
                                notice( t('Password changed.') . EOL);
                        else