debug notice to resolve error

This commit is contained in:
Steffen Schröder 2014-06-14 15:58:24 +02:00
parent ff0dfc4ae7
commit 2bbc466c74

View File

@ -97,6 +97,11 @@ class ManiaExchangeManager {
$index = 0;
foreach ($maps as $map) {
if (!$map) {
// TODO: remove after resolving of error report about "non-object"
$this->maniaControl->errorHandler->triggerDebugNotice('Non-Object-Map: ' . print_r($map, true));
continue;
}
/** @var Map $map */
$fetchMapStatement->bind_param('i', $map->index);
$fetchMapStatement->execute();
@ -356,4 +361,4 @@ class ManiaExchangeManager {
return -1;
}
}
}
}