Skip to content

Commit

Permalink
[BUGFIX] Use execute() instead of executeQuery()
Browse files Browse the repository at this point in the history
Related #23
  • Loading branch information
ayacoo committed Mar 5, 2022
1 parent d9733de commit c59e708
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Classes/Domain/Repository/FileRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ protected function getPageTreeIds(int $id, int $depth, int $begin): array
->where(
$queryBuilder->expr()->eq('pid', $queryBuilder->createNamedParameter($id, \PDO::PARAM_INT))
)
->executeQuery();
->execute();

$pageIds = [];
while ($row = $result->fetchAssociative()) {
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ayacoo/video-validator",
"type": "typo3-cms-extension",
"version": "2.0.0",
"version": "2.0.1",
"description": "Checks online videos in TYPO3 for availability",
"homepage": "https://www.ayacoo.de",
"authors": [
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
'state' => 'stable',
'createDirs' => '',
'clearCacheOnLoad' => 0,
'version' => '2.0.0',
'version' => '2.0.1',
'constraints' => [
'depends' => [
'typo3' => '10.4.13-11.9.99',
Expand Down

0 comments on commit c59e708

Please sign in to comment.