]> git.mxchange.org Git - friendica.git/commitdiff
tabwidth
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Sun, 14 Apr 2013 16:19:01 +0000 (18:19 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Sun, 14 Apr 2013 16:19:01 +0000 (18:19 +0200)
mod/settings.php

index 3d3688e29b4f0f9446a8af75fda8854b0c6c6014..ca688d1a9fefabc9c8618ec568d1a91e00c80982 100644 (file)
@@ -300,8 +300,8 @@ function settings_post(&$a) {
        if((x($_POST,'npassword')) || (x($_POST,'confirm'))) {
 
                $newpass = $_POST['npassword'];
-                $confirm = $_POST['confirm'];
-                $oldpass = hash('whirlpool', $_POST['opassword']);
+        $confirm = $_POST['confirm'];
+        $oldpass = hash('whirlpool', $_POST['opassword']);
 
                $err = false;
                if($newpass != $confirm ) {
@@ -312,15 +312,15 @@ function settings_post(&$a) {
                if((! x($newpass)) || (! x($confirm))) {
                        notice( t('Empty passwords are not allowed. Password unchanged.') . EOL);
                        $err = true;
-                }
+        }
 
-                //  check if the old password was supplied correctly before 
-                //  changing it to the new value
-                $r = q("SELECT `password` FROM `user`WHERE `uid` = %d LIMIT 1", intval(local_user()));
-                if( $oldpass != $r[0]['password'] ) {
-                    notice( t('Wrong password.') . EOL);
-                    $err = true;
-                }
+        //  check if the old password was supplied correctly before 
+        //  changing it to the new value
+        $r = q("SELECT `password` FROM `user`WHERE `uid` = %d LIMIT 1", intval(local_user()));
+        if( $oldpass != $r[0]['password'] ) {
+            notice( t('Wrong password.') . EOL);
+            $err = true;
+        }
 
                if(! $err) {
                        $password = hash('whirlpool',$newpass);
@@ -403,17 +403,17 @@ function settings_post(&$a) {
 
        if($email != $a->user['email']) {
                $email_changed = true;
-                //  check for the correct password
-                $r = q("SELECT `password` FROM `user`WHERE `uid` = %d LIMIT 1", intval(local_user()));
-                $password = hash('whirlpool', $_POST['password']);
-                if ($password != $r[0]['password']) {
-                    $err .= t('Wrong Password') . EOL;
-                    $email = $a->user['email'];
-                }
-                //  check the email is valid
-                if(! valid_email($email))
-                    $err .= t(' Not valid email.');
-                //  ensure new email is not the admin mail
+        //  check for the correct password
+        $r = q("SELECT `password` FROM `user`WHERE `uid` = %d LIMIT 1", intval(local_user()));
+        $password = hash('whirlpool', $_POST['password']);
+        if ($password != $r[0]['password']) {
+            $err .= t('Wrong Password') . EOL;
+            $email = $a->user['email'];
+        }
+        //  check the email is valid
+        if(! valid_email($email))
+            $err .= t(' Not valid email.');
+        //  ensure new email is not the admin mail
                if((x($a->config,'admin_email')) && (strcasecmp($email,$a->config['admin_email']) == 0)) {
                        $err .= t(' Cannot change to that email.');
                        $email = $a->user['email'];