From 1e36af0c1c3538de7b33b35b60aab72fc44f3493 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 5 May 2008 07:27:29 +0100 Subject: tweak score display --- functions.php | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/functions.php b/functions.php index 3c85db1c3..30a639344 100644 --- a/functions.php +++ b/functions.php @@ -4924,13 +4924,7 @@ $score = $line["score"]; - if ($score > 100) { - $score_pic = "score_high.png"; - } else if ($score < -100) { - $score_pic = "score_low.png"; - } else { - $score_pic = "score_neutral.png"; - } + $score_pic = get_score_pic($score); $score_title = __("(Click to change)"); @@ -5539,4 +5533,14 @@ return $filters; } + + function get_score_pic($score) { + if ($score > 0) { + return "score_high.png"; + } else if ($score < 0) { + return "score_low.png"; + } else { + return "score_neutral.png"; + } + } ?> -- cgit v1.2.3