diff options
author | Benny Baumann <BenBE@geshi.org> | 2013-05-01 02:03:54 +0200 |
---|---|---|
committer | Benny Baumann <BenBE@geshi.org> | 2013-05-01 02:03:54 +0200 |
commit | 4bcceb373cf63cec154b38d5ba3d97c8cee95b39 (patch) | |
tree | cd48026338b562c14f711317ffe054b5c868be3f /includes | |
parent | c912f911b7413de664754533ac62b783125a6a83 (diff) | |
parent | c3f0e56d1ee679f193758538d63a6d182aa0f9e0 (diff) | |
download | cacert-devel-4bcceb373cf63cec154b38d5ba3d97c8cee95b39.tar.gz cacert-devel-4bcceb373cf63cec154b38d5ba3d97c8cee95b39.tar.xz cacert-devel-4bcceb373cf63cec154b38d5ba3d97c8cee95b39.zip |
Merge branch 'bug-1136' into testserver-stable
Diffstat (limited to 'includes')
-rw-r--r-- | includes/temp_functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/temp_functions.php b/includes/temp_functions.php index 2026107..37525b0 100644 --- a/includes/temp_functions.php +++ b/includes/temp_functions.php @@ -239,7 +239,7 @@ function revoke_all_private_cert($uid){ //revokes all certificates linked to a personal accounts //gpg revokation needs to be added to a later point $uid=intval($uid); - $query = "select * from `email` where `memid`='".$id."' and `id`!='".$emailid."'" ; + $query = "select * from `email` where `memid`='".$id."'"; $res=mysql_query($query); while($row = mysql_fetch_assoc($res)){ revoke_all_client_cert($row['id']); |