[FIX] Uninitialized var in roundstats class

This commit is contained in:
Joey 2013-12-18 09:34:38 -05:00
parent dd80fdcc1a
commit e0c2a19542

View File

@ -112,6 +112,7 @@ class RoundStats extends Base {
ORDER BY valid DESC
");
if ($this->checkStmt($stmt) && $stmt->bind_param('i', $iHeight) && $stmt->execute() && $result = $stmt->get_result()) {
$aData = null;
while ($row = $result->fetch_assoc()) {
$aData[$row['id']] = $row;
}