diff options
author | INOPIAE <inopiae@cacert.org> | 2013-05-07 23:40:55 +0200 |
---|---|---|
committer | INOPIAE <inopiae@cacert.org> | 2013-05-07 23:40:55 +0200 |
commit | 8bfc6bd266b4e849987040b3db63e7b80d8c47d5 (patch) | |
tree | bc81776d46a07f6e93430756c8b761545719d7a3 | |
parent | a8fa9c12a6001ff97cfefced3a68b0f788a02b65 (diff) | |
download | cacert-devel-8bfc6bd266b4e849987040b3db63e7b80d8c47d5.tar.gz cacert-devel-8bfc6bd266b4e849987040b3db63e7b80d8c47d5.tar.xz cacert-devel-8bfc6bd266b4e849987040b3db63e7b80d8c47d5.zip |
bug 782: fixed missing "_"
-rw-r--r-- | includes/account.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/account.php b/includes/account.php index d54fbd9..7de3546 100644 --- a/includes/account.php +++ b/includes/account.php @@ -1146,7 +1146,7 @@ } if(substr($id,0,14)=="check_comment_") { - if (!empty($_REQUEST['check_comment'.$id])) { + if (!empty($_REQUEST['check_comment_'.$id])) { $id = intval(substr($id,14)); $comment=trim(mysql_real_escape_string(stripslashes($_REQUEST['comment_'.$id]))); mysql_query("update `emailcerts` set `description`='$comment' where `id`='$id' and `memid`='".$_SESSION['profile']['id']."'"); |