Skip to content

Commit

Permalink
[5.1] PHP Deprecated: PDO::quote(): Passing null (#43288)
Browse files Browse the repository at this point in the history
  • Loading branch information
alikon committed May 11, 2024
1 parent fd4db9b commit 36331e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/src/Updater/Updater.php
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ private function getUpdateObjectsForSite($updateSite, $minimumStability = self::
'element' => $current_update->get('element'),
'type' => $current_update->get('type'),
'client_id' => $current_update->get('client_id'),
'folder' => $current_update->get('folder'),
'folder' => $current_update->get('folder', ''),
]
);

Expand All @@ -315,7 +315,7 @@ private function getUpdateObjectsForSite($updateSite, $minimumStability = self::
'element' => $current_update->get('element'),
'type' => $current_update->get('type'),
'client_id' => $current_update->get('client_id'),
'folder' => $current_update->get('folder'),
'folder' => $current_update->get('folder', ''),
]
);

Expand Down

0 comments on commit 36331e8

Please sign in to comment.