From b5cc7a564aee39e995b64c3db502b02ef20379bd Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Thu, 29 Oct 2009 00:32:20 +0000 Subject: [PATCH] Bonus ranking list now contains nicknames, if set --- inc/functions.php | 19 +++++++++++++------ inc/libs/bonus_functions.php | 9 +++++++++ 2 files changed, 22 insertions(+), 6 deletions(-) diff --git a/inc/functions.php b/inc/functions.php index 9cd97a5890..0048109565 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -935,18 +935,25 @@ function countSelection ($array) { // Generate XHTML code for the CAPTCHA function generateCaptchaCode ($code, $type, $DATA, $userid) { - return 'Code'; + return 'Code ' . $code . ''; } // Generates a timestamp (some wrapper for mktime()) -function makeTime ($H, $M, $S, $stamp) { +function makeTime ($hours, $minutes, $seconds, $stamp) { // Extract day, month and year from given timestamp - $day = date('d', $stamp); - $month = date('m', $stamp); - $year = date('Y', $stamp); + $days = date('d', $stamp); + $months = date('m', $stamp); + $years = date('Y', $stamp); // Create timestamp for wished time which depends on extracted date - return mktime($H, $M, $S, $month, $day, $year); + return mktime( + $hours, + $minutes, + $seconds, + $months, + $days, + $years + ); } // Redirects to an URL and if neccessarry extends it with own base URL diff --git a/inc/libs/bonus_functions.php b/inc/libs/bonus_functions.php index 5b7358917e..c348118bbf 100644 --- a/inc/libs/bonus_functions.php +++ b/inc/libs/bonus_functions.php @@ -170,6 +170,15 @@ LIMIT 1", // Load data $rows = merge_array($rows, SQL_FETCHARRAY($result_users)); + // Is ext-nickname active? + if (isExtensionActive('nickname')) { + // Then get the nickname + $nick = getNickname($rows['userid']); + + // Is it not empty? Then use it + if (!empty($nick)) $rows['userid'] = $nick . '(' . $rows['userid'] . ')'; + } // END - if + // Translate comma $rows['points'] = translateComma($rows['points']); } // END - if -- 2.30.2