From 2882e2fd5eb74817e6b8743595877c94fa030cb7 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Tue, 7 Apr 2015 16:14:03 +0200 Subject: [PATCH] Setup: Fix that not any privilege checks are working in the wizard fixes #8929 --- modules/setup/library/Setup/Utils/DbTool.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/setup/library/Setup/Utils/DbTool.php b/modules/setup/library/Setup/Utils/DbTool.php index ebfa08a0b..b08f42bf8 100644 --- a/modules/setup/library/Setup/Utils/DbTool.php +++ b/modules/setup/library/Setup/Utils/DbTool.php @@ -786,6 +786,6 @@ EOD; $privilegesGranted &= $query->fetchColumn() !== false; } - return $privilegesGranted; + return (bool) $privilegesGranted; } }