defender-uk wrote: To see this mode current working, and to try and break it go HERE
Code: Select all
***************************************************************************
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
***************************************************************************
alegis gensan wrote: Make sure it can load other content from that page, the flash issue. I still have some games that have to wait till this is sorted out...FOr some reason, on the games page it doesn't want to load swf content from other pages...Is this because the page is loaded as =gameid=3 etc?
Warning: main(./includes/functions_points.php): failed to open stream: No such file or directory in /home/sites/site18/web/phpBB2/activity.php on line 61
Warning: main(): Failed opening './includes/functions_points.php' for inclusion (include_path='.:/usr/lib/php') in /home/sites/site18/web/phpBB2/activity.php on line 61
Warning: Cannot modify header information - headers already sent by (output started at /home/sites/site18/web/phpBB2/activity.php:61) in /home/sites/site18/web/phpBB2/includes/page_header.php on line 503
Warning: Cannot modify header information - headers already sent by (output started at /home/sites/site18/web/phpBB2/activity.php:61) in /home/sites/site18/web/phpBB2/includes/page_header.php on line 505
Warning: Cannot modify header information - headers already sent by (output started at /home/sites/site18/web/phpBB2/activity.php:61) in /home/sites/site18/web/phpBB2/includes/page_header.php on line 506
MaddoxX wrote: Well this one works for me but has some errors.. it DOESN'T show the bestest player and highscores in the table.. and i got this weird error on a game;
Template->make_filename(): Error - file ./templates/BBTech/game_body.tpl does not exist
Code: Select all
if($at_score_info['score'] < $score && !$game_info[reverse_list])
{
$saved_text .= $lang['game_new_at_high_score'];
}
else if($at_score_info['score'] > $score && !$game_info[reverse_list])
{
$saved_text .= $lang['game_new_at_high_score'];
}
Code: Select all
if($at_score_info['score'] < $score && !$game_info[reverse_list])
{
$saved_text .= $lang['game_new_at_high_score'];
}
else if($at_score_info['score'] > $score && $game_info[reverse_list])
{
$saved_text .= $lang['game_new_at_high_score'];
}