OSU server: Print out signup ID if there is some problem with it

Signed-off-by: Ben Greear <greearb@candelatech.com>
This commit is contained in:
Ben Greear 2015-03-26 17:39:50 -04:00 committed by Jouni Malinen
parent 1b4500670f
commit e7d285ca5c

View file

@ -17,7 +17,7 @@ if (!$db) {
$row = $db->query("SELECT realm FROM sessions WHERE id='$id'")->fetch();
if ($row == false) {
die("Session not found");
die("Session not found for id: $id");
}
$realm = $row['realm'];