mirror of
https://github.com/nextcloud/passman.git
synced 2026-01-26 10:31:20 +08:00
fix selection query in lib/Migration/ServerSideEncryption.php with executeQuery() usage
Signed-off-by: Timo Triebensky <30630233+binsky08@users.noreply.github.com>
This commit is contained in:
parent
02bac8bf49
commit
8a4536501e
1 changed files with 1 additions and 1 deletions
|
|
@ -79,7 +79,7 @@ class ServerSideEncryption implements IRepairStep {
|
|||
$qb = $this->db->getQueryBuilder();
|
||||
$result = $qb->select('*')
|
||||
->from($table)
|
||||
->executeStatement();
|
||||
->executeQuery();
|
||||
return $result->fetchAll();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue