1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-10 08:34:09 +02:00

imode fixes

This commit is contained in:
sweetas
2007-06-27 13:27:25 +00:00
parent e00ff9dec0
commit 6a9d84cf34
3 changed files with 17 additions and 16 deletions

View File

@@ -11,9 +11,9 @@
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/page.php,v $
| $Revision: 1.9 $
| $Date: 2007-01-20 14:52:41 $
| $Author: mrpete $
| $Revision: 1.10 $
| $Date: 2007-06-27 13:27:19 $
| $Author: sweetas $
|
+----------------------------------------------------------------------------+
*/
@@ -299,7 +299,8 @@ class pageClass
function pageRating($page_rating_flag)
{
$rate_text = ''; // Notice removal
global $imode;
$rate_text = ''; // Notice removal
if($page_rating_flag)
{
require_once(e_HANDLER."rate_class.php");
@@ -312,7 +313,7 @@ class pageClass
{
$ratearray[2] = 0;
}
$rate_text .= "<img src='".e_IMAGE."rate/box/box".$ratearray[1].".png' alt='' style='vertical-align:middle;' />\n";
$rate_text .= "<img src='".e_IMAGE."packs/".$imode."/rate/box/box".$ratearray[1].".png' alt='' style='vertical-align:middle;' />\n";
$rate_text .= "&nbsp;".$ratearray[1].".".$ratearray[2]." - ".$ratearray[0]."&nbsp;";
$rate_text .= ($ratearray[0] == 1 ? "vote" : "votes");
}