-
Notifications
You must be signed in to change notification settings - Fork 36
Open
Description
Found the issue here:
$sql_spawn = "SELECT pokemon_id, COUNT(pokemon_id) as count FROM rdmdb.pokemon WHERE " . $points_string . " AND first_seen_timestamp >= ? GROUP BY pokemon_id ORDER BY count DESC" . $limit;
Query defines the database name assuming everyone uses rdmdb. This needs removing to read:
$sql_spawn = "SELECT pokemon_id, COUNT(pokemon_id) as count FROM pokemon WHERE " . $points_string . " AND first_seen_timestamp >= ? GROUP BY pokemon_id ORDER BY count DESC" . $limit;
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels