From 3e4454bd9b88aa246ba9209a0546745763eaac3e Mon Sep 17 00:00:00 2001 From: Steven Wittens Date: Sun, 13 May 2001 23:23:23 +0000 Subject: [PATCH] I added a trailing dot to the numbers in the ratings list. Call me a perfectionist... --- modules/rating.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/rating.module b/modules/rating.module index cc6b02caf74..d8382cf7ae6 100644 --- a/modules/rating.module +++ b/modules/rating.module @@ -27,7 +27,7 @@ function rating_list($limit) { $output .= "\n"; while ($account = db_fetch_object($result)) { $ranking = $account->old - $account->new; - $output .= ""; + $output .= ""; } $output .= "
". ++$i ."". format_username($account->userid) ."". check_output($account->rating) ."(". ($ranking < 0 ? "" : "+") ."$ranking)
". ++$i .".". format_username($account->userid) ."". check_output($account->rating) ."(". ($ranking < 0 ? "" : "+") ."$ranking)
\n"; return $output; @@ -47,4 +47,4 @@ function rating_block() { return $block; } -?> \ No newline at end of file +?>