diff options
author | INOPIAE <inopiae@cacert.org> | 2013-05-14 20:44:46 +0200 |
---|---|---|
committer | INOPIAE <inopiae@cacert.org> | 2013-05-14 20:44:46 +0200 |
commit | 714d9cd8294cb9bed1f5f9a8b4c89a4ea07eba06 (patch) | |
tree | a73c5464fe2a61e369ef02e076e364ff61458bbf | |
parent | 121f820f6ef69603e4c332caf90872ee0227309c (diff) | |
download | cacert-devel-714d9cd8294cb9bed1f5f9a8b4c89a4ea07eba06.tar.gz cacert-devel-714d9cd8294cb9bed1f5f9a8b4c89a4ea07eba06.tar.xz cacert-devel-714d9cd8294cb9bed1f5f9a8b4c89a4ea07eba06.zip |
bug 782: some echos for testing
-rw-r--r-- | includes/account.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/includes/account.php b/includes/account.php index 024238b..748dd9e 100644 --- a/includes/account.php +++ b/includes/account.php @@ -1136,6 +1136,7 @@ if($oldid == 5 && array_key_exists('change',$_REQUEST) && $_REQUEST['change'] != "") { showheader(_("My CAcert.org Account!")); +echo var_dump($_REQUEST).'<br>'; foreach($_REQUEST as $id => $val) { if(substr($id,0,5)=="cert_") @@ -1147,6 +1148,7 @@ if(substr($id,0,14)=="check_comment_") { $cid = intval(substr($id,14)); +echo 'cid:'.$cid.'<br>'; if (!empty($_REQUEST['check_comment_'.$id])) { $comment=trim(mysql_real_escape_string(stripslashes($_REQUEST['comment_'.$cid]))); mysql_query("update `emailcerts` set `description`='$comment' where `id`='$cid' and `memid`='".$_SESSION['profile']['id']."'"); |