We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 687184d commit e6bd8f2Copy full SHA for e6bd8f2
app/code/community/Fballiano/ImageCleaner/controllers/Adminhtml/FbimagecleanerController.php
@@ -186,7 +186,7 @@ public function syncwysiwygAction()
186
$used_images[] = $fs_image;
187
}
188
foreach ($db_images as $db_image) {
189
- if (stripos($db_image, $fs_image) !== false) {
+ if (stripos($db_image ?? '', $fs_image) !== false) {
190
191
break;
192
@@ -392,4 +392,4 @@ public function resetAction()
392
$db->query("TRUNCATE TABLE {$cleaner_table}");
393
$this->_redirect('*/*');
394
395
-}
+}
0 commit comments