This is a problem with any game that has the words "and" or "or" in them (e.g., any "Word" game). This is a result of the ibp_cleansql function in the arcade.php, and the developers using this function to check and clean all game name input.
There are two ways to fix this. Create a separate function copied from the existing function, and remove the lines with "and" and "or" in them. Then go through the code and anywhere the code calls ibp_cleansql for game name, simply replace it with your new function name.
Alternatively (and probably less safe, security-wise), just remove the following two lines from ibp_cleansql in arcade.php:
Quote:
$sqlcomm[] = 'and';
$sqlcomm[] = 'or';
|