Last Game Section version: 1.2



Thread Closed 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Rating stars don't display
02-01-2009, 01:23
Post: #1
Rating stars don't display
Hello.

My arcade is: http://gbatmw.net/games.php

On that page (scroll down), instead of rating stars appearing, only text appears.

What is wrong?
Find all posts by this user
Firefox Winows Vista
02-01-2009, 12:52
Post: #2
RE: Rating stars don't display
This bug was fixed in the Beta Testers Forum:
Open games.php and find:
PHP Code:
        
        
//Load the needed stylesheet
        
if(is_array($theme['stylesheets']['forumdisplay.php']['global']))
        {
            foreach(
$theme['stylesheets']['forumdisplay.php']['global'] as $page_stylesheet)
            {
                if(
$already_loaded[$page_stylesheet] || strpos($page_stylesheet"rating") === false)
                {
                    continue;
                }
                
                
$rating_stylesheet .= "<link type=\"text/css\" rel=\"stylesheet\" href=\"{$mybb->settings['bburl']}/{.$page_stylesheet}\" />\n";
                
$already_loaded[$page_stylesheet] = 1;
            }
        } 

Replace with:
PHP Code:
        //Load the needed stylesheet
        
if(is_array($theme['stylesheets']['forumdisplay.php']['global']))
        {
            foreach(
$theme['stylesheets']['forumdisplay.php']['global'] as $page_stylesheet)
            {
                if(
$already_loaded[$page_stylesheet])
                {
                    continue;
                }
                
                
$rating_stylesheet .= "<link type=\"text/css\" rel=\"stylesheet\" href=\"".$mybb->settings['bburl']."/".$page_stylesheet."\" />\n";
                
$already_loaded[$page_stylesheet] = 1;
            }
        } 

Online - Urbanus
Visit this user's website Find all posts by this user
Firefox Linux Ubuntu
26-01-2009, 11:27
Post: #3
RE: Rating stars don't display
You should find it TWICE in games.php. Replace both! Wink

Greets, lenkradschloss
Find all posts by this user
Firefox Winows Vista
Thread Closed 


Forum Jump: