Skip to content

Commit

Permalink
Setup: Fix that not any privilege checks are working in the wizard
Browse files Browse the repository at this point in the history
fixes #8929
  • Loading branch information
Johannes Meyer committed Apr 7, 2015
1 parent 62bb35a commit 2882e2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/setup/library/Setup/Utils/DbTool.php
Expand Up @@ -786,6 +786,6 @@ public function checkPgsqlPrivileges(
$privilegesGranted &= $query->fetchColumn() !== false;
}

return $privilegesGranted;
return (bool) $privilegesGranted;
}
}

0 comments on commit 2882e2f

Please sign in to comment.