- Readme First! - Read and follow the rules, otherwise your posts will be closed
There are currently, 50 guest(s) and 1 member(s) that are online. You are Anonymous user. You can register for free by clicking here
Nuke Cops :: View topic - Unrated Stories [ ]
Author
Message
LunaFaye
Nuke Soldier
Joined: Jun 12, 2005
Posts: 20
Location: Columbus OH
Posted:
Sat Jan 07, 2006 2:16 pm
I don't know if this bothered anyone else, but I didn't like it that a story with no votes would show a rating of "0". I searched around, and didn't see a change for this, so I made one myself, and just thought I would share, incase someone else wanted it.
I changed it to read "Be the first to rate this story".
In modules / News / language / lang-english.php
Added:
Quote:
define("_FIRSTTORATE","Be the first to rate this story");
In modules / News / index.php
Changed:
Quote:
if ($score != 0) {
$rated = substr($score / $ratings, 0, 4);
} else {
$rated = 0;
}
To:
Quote:
if ($score != 0) {
$rated = substr($score / $ratings, 0, 4);
} else {
$rated = "$story_link<b>"._FIRSTTORATE."</b></a>";
}
In modules / News / article.php
Changed:
Quote:
if ($ratings != 0) {
$rate = substr($score / $ratings, 0, 4);
$r_image = round($rate);
if ($r_image == 1) {
$the_image = "<br><br><img src=\"images/articles/stars-1.gif\" border=\"1\"></center><br>";
} elseif ($r_image == 2) {
$the_image = "<br><br><img src=\"images/articles/stars-2.gif\" border=\"1\"></center><br>";
} elseif ($r_image == 3) {
$the_image = "<br><br><img src=\"images/articles/stars-3.gif\" border=\"1\"></center><br>";
} elseif ($r_image == 4) {
$the_image = "<br><br><img src=\"images/articles/stars-4.gif\" border=\"1\"></center><br>";
} elseif ($r_image == 5) {
$the_image = "<br><br><img src=\"images/articles/stars-5.gif\" border=\"1\"></center><br>";
}
} else {
$rate = 0;
$the_image = "</center><br>";
}
To:
Quote:
if ($ratings != 0) {
$rate = substr($score / $ratings, 0, 4);
$r_image = round($rate);
if ($r_image == 1) {
$the_image = "<br><br><img src=\"images/articles/stars-1.gif\" border=\"1\"></center><br>";
} elseif ($r_image == 2) {
$the_image = "<br><br><img src=\"images/articles/stars-2.gif\" border=\"1\"></center><br>";
} elseif ($r_image == 3) {
$the_image = "<br><br><img src=\"images/articles/stars-3.gif\" border=\"1\"></center><br>";
} elseif ($r_image == 4) {
$the_image = "<br><br><img src=\"images/articles/stars-4.gif\" border=\"1\"></center><br>";
} elseif ($r_image == 5) {
$the_image = "<br><br><img src=\"images/articles/stars-5.gif\" border=\"1\"></center><br>";
}
} else {
$rate = "Be the first to rate this story";
$the_image = "</center><br>";
}
Luna Faye
_________________ Oracle of Pæthieon
astalavistabd
Captain
Joined: Dec 19, 2004
Posts: 663
Location: Canada
Posted:
Sat Jan 07, 2006 3:09 pm
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum