diff options
author | Benny Baumann <BenBE@geshi.org> | 2015-05-12 23:21:04 +0200 |
---|---|---|
committer | Benny Baumann <BenBE@geshi.org> | 2015-05-12 23:21:04 +0200 |
commit | 3abe7dcec217fd183e042e66e4356738af019e41 (patch) | |
tree | 9877d4e1509557450eb8f059bc89fc3a389d4568 /pages/account | |
parent | a17af2d6b7f9bd5d37e9c48518aad9a14ac256ca (diff) | |
parent | 6ce954919e4f60c8d03f647ff6d6fbc77cc51133 (diff) | |
download | cacert-devel-3abe7dcec217fd183e042e66e4356738af019e41.tar.gz cacert-devel-3abe7dcec217fd183e042e66e4356738af019e41.tar.xz cacert-devel-3abe7dcec217fd183e042e66e4356738af019e41.zip |
Merge branch 'bug-1316' into bug-1050
Diffstat (limited to 'pages/account')
-rw-r--r-- | pages/account/43.php | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/pages/account/43.php b/pages/account/43.php index 7ea782d..2774fb2 100644 --- a/pages/account/43.php +++ b/pages/account/43.php @@ -116,13 +116,6 @@ if(intval($_REQUEST['userid']) > 0) { if(mysql_num_rows($res) <= 0) { echo _("I'm sorry, the user you were looking for seems to have disappeared! Bad things are afoot!"); } else { - $row = mysql_fetch_assoc($res); - $query = "select sum(`points`) as `points` from `notary` where `to`='".intval($row['id'])."' and `deleted` = 0"; - $dres = mysql_query($query); - $drow = mysql_fetch_assoc($dres); - $alerts =get_alerts(intval($row['id'])); - -//display account data //deletes an assurance if(array_key_exists('assurance',$_REQUEST) && $_REQUEST['assurance'] > 0 && $ticketvalidation == true) @@ -144,6 +137,15 @@ if(intval($_REQUEST['userid']) > 0) { $ticketmsg=_('No assurance revoked. Ticket number is missing!'); } + $row = mysql_fetch_assoc($res); + $query = "select sum(`points`) as `points` from `notary` where `to`='".intval($row['id'])."' and `deleted` = 0"; + $dres = mysql_query($query); + $drow = mysql_fetch_assoc($dres); + $alerts =get_alerts(intval($row['id'])); + +//display account data + + //Ticket number ?> |