From d2cd5782146fa5a7324d9f4c2f197d153810167c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20D=C3=B6rre?= Date: Tue, 2 Jun 2015 21:54:38 +0200 Subject: bug 1316: refix the moved code (aargh, no scoping..) --- pages/account/43.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pages/account') diff --git a/pages/account/43.php b/pages/account/43.php index 2774fb2..e5d5a42 100644 --- a/pages/account/43.php +++ b/pages/account/43.php @@ -112,8 +112,8 @@ if(intval(array_key_exists('userid',$_REQUEST)?$_REQUEST['userid']:0) <= 0) // display user information for given user id if(intval($_REQUEST['userid']) > 0) { $userid = intval($_REQUEST['userid']); - $res =get_user_data($userid); - if(mysql_num_rows($res) <= 0) { + $user_data_res =get_user_data($userid); + if(mysql_num_rows($user_data_res) <= 0) { echo _("I'm sorry, the user you were looking for seems to have disappeared! Bad things are afoot!"); } else { @@ -137,7 +137,7 @@ if(intval($_REQUEST['userid']) > 0) { $ticketmsg=_('No assurance revoked. Ticket number is missing!'); } - $row = mysql_fetch_assoc($res); + $row = mysql_fetch_assoc($user_data_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); -- cgit v1.2.1