diff options
author | INOPIAE <inopiae@cacert.org> | 2012-11-25 20:29:42 +0100 |
---|---|---|
committer | INOPIAE <inopiae@cacert.org> | 2012-11-25 20:29:42 +0100 |
commit | b02d5765888a5573d58ff43959a1e1c8879395e7 (patch) | |
tree | e892d7dbd7f57654299f1b928b30b04f0725bb24 /includes/account.php | |
parent | f4838bd359669c262faa0d7c145e3ee64718cca6 (diff) | |
download | cacert-devel-b02d5765888a5573d58ff43959a1e1c8879395e7.tar.gz cacert-devel-b02d5765888a5573d58ff43959a1e1c8879395e7.tar.xz cacert-devel-b02d5765888a5573d58ff43959a1e1c8879395e7.zip |
bug 782:Took out braces that were to much
Diffstat (limited to 'includes/account.php')
-rw-r--r-- | includes/account.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/account.php b/includes/account.php index 07b93b6..232bbac 100644 --- a/includes/account.php +++ b/includes/account.php @@ -1162,13 +1162,13 @@ }else{ $description= ""; } - } + if(trim($_REQUEST['disablelogin']) == "1"){ $disablelogin = 1; }else{ $disablelogin = 0; } - } + mysql_query("update `emailcerts` set `disablelogin`='$disablelogin', `description`='description' where `id`='".$_REQUEST['certid']."' and `memid`='".$_SESSION['profile']['id']."'"); } |