Setup: Fix that not any privilege checks are working in the wizard

fixes #8929
This commit is contained in:
Johannes Meyer 2015-04-07 16:14:03 +02:00
parent 62bb35a71e
commit 2882e2fd5e

View File

@ -786,6 +786,6 @@ EOD;
$privilegesGranted &= $query->fetchColumn() !== false;
}
return $privilegesGranted;
return (bool) $privilegesGranted;
}
}