diff options
author | Michael Tänzer <neo@nhng.de> | 2014-01-15 00:56:16 +0100 |
---|---|---|
committer | Michael Tänzer <neo@nhng.de> | 2014-01-15 00:56:16 +0100 |
commit | 41e6ea88f5a2a6ac374f26f2239f87e1d7164255 (patch) | |
tree | adc5f3491472a47c5d8ed2b6decf7de4a39b6035 /includes | |
parent | f0f37eabcb2554f78900396248a05cdee1626975 (diff) | |
parent | 2c4c29221f7efcaa98ff3150e8563b2616d143da (diff) | |
download | cacert-devel-41e6ea88f5a2a6ac374f26f2239f87e1d7164255.tar.gz cacert-devel-41e6ea88f5a2a6ac374f26f2239f87e1d7164255.tar.xz cacert-devel-41e6ea88f5a2a6ac374f26f2239f87e1d7164255.zip |
Merge remote-tracking branch 'origin/bug-1195' into release
Diffstat (limited to 'includes')
-rw-r--r-- | includes/account.php | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/includes/account.php b/includes/account.php index 36793f0..5be932b 100644 --- a/includes/account.php +++ b/includes/account.php @@ -1189,24 +1189,6 @@ exit; } - - if($oldid == 6 && $_REQUEST['certid'] != "") - { - if(trim($_REQUEST['description']) != ""){ - $description= trim(mysql_real_escape_string(stripslashes($_REQUEST['description']))); - }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']."'"); - } - if($oldid == 13 && $process != "" && $showdetails!="") { csrf_check("perschange"); |