I think i figured it out. you used
PHP Code:
// ##############################
// score-tools: delete all scores
// ##############################
if ($action == "del_all")
{
global $DB;
$DB->query("DELETE FROM ibf_games_scores");
do_champ_update(1);
do_league_update(1);
/*
if( $this->arcade['log'] )
{
$ADMIN->save_log("Deleted All Scores");
}
*/
define('CP_REDIRECT', 'arcade.php?code=score_tools');
print_stop_message('saved_settings_successfully');
this line should be changed
PHP Code:
$DB->query("DELETE FROM ibf_games_scores");
so that it says
PHP Code:
$DB->query("DELETE FROM games_scores");
no problem we always skip or forget to do something when converting formats. I do it all the time. sometimes you need a new eye