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

Missed to commit this yesterday as part of the fix for #8929

refs #8929
This commit is contained in:
Johannes Meyer 2015-04-08 08:55:08 +02:00
parent 2882e2fd5e
commit 1835479738
1 changed files with 1 additions and 1 deletions

View File

@ -691,7 +691,7 @@ EOD;
. ' AND ' . $privilegeCondition . ($requireGrants ? " AND is_grantable = 'YES'" : ''),
array(':grantee' => $grantee)
);
return (int) $query->fetchObject()->matches === count($mysqlPrivileges);
return $query->fetchObject()->matches === count($mysqlPrivileges);
}
/**