half through doing the edits, something id like to check..
closest i can find is:
Code: [ Select all ]
#
#-----[ FIND ]------------------------------------------
#
$db->sql_query("UPDATE ".$prefix."_evolution SET evo_value='".$ximg_viewer."' WHERE evo_field='img_viewer'");
Code: [ Select all ]
#
#-----[ NEW LINE, AFTER, ADD ]------------------------------------------
#
$db->sql_query("UPDATE ".$prefix."_evolution SET evo_value='".$steam_api_key."' WHERE evo_field='steam_api_key'");
$db->sql_query("UPDATE ".$prefix."_evolution SET evo_value='".$steam_caption."' WHERE evo_field='steam_caption'");
$db->sql_query("UPDATE ".$prefix."_evolution SET evo_value='".$steam_pside."' WHERE evo_field='steam_pside'");
closest i can find is:
Code: [ Select all ]
$db->sql_query("UPDATE "._EVOCONFIG_TABLE." SET evo_value='".$ximg_viewer."' WHERE evo_field='img_viewer'");
Yes, that is the right line.
You can see from the one in the instructions, is says
UPDATE ".$prefix."_evolution
Well, "._EVOCONFIG_TABLE." has replaced that, so even what you can replace that with can be change to:
You can see from the one in the instructions, is says
UPDATE ".$prefix."_evolution
Well, "._EVOCONFIG_TABLE." has replaced that, so even what you can replace that with can be change to:
Code: [ Select all ]
$db->sql_query("UPDATE "._EVOCONFIG_TABLE." SET evo_value='".$steam_api_key."' WHERE evo_field='steam_api_key'");
$db->sql_query("UPDATE "._EVOCONFIG_TABLE." SET evo_value='".$steam_caption."' WHERE evo_field='steam_caption'");
$db->sql_query("UPDATE "._EVOCONFIG_TABLE." SET evo_value='".$steam_pside."' WHERE evo_field='steam_pside'");