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:
parent
2882e2fd5e
commit
1835479738
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue