Skip to content

Commit c191597

Browse files
committed
Fix "Invalid fetch style: 12" on Oracle
Signed-off-by: Joas Schilling <coding@schilljs.com>
1 parent 11344cd commit c191597

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/dav/tests/unit/DAV/CustomPropertiesBackendTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ protected function getProps(string $user, string $path) {
112112

113113

114114
$result = $query->execute();
115-
$data = $result->fetchAll(\PDO::FETCH_KEY_PAIR);
115+
$data = $result->fetchAll();
116116
$result->closeCursor();
117117
return $data;
118118
}

0 commit comments

Comments
 (0)