From 85db5eb9d1da62ff191d9ac592582f46f86c8a75 Mon Sep 17 00:00:00 2001 From: Damien Sorel Date: Sun, 24 Sep 2023 14:15:05 +0200 Subject: [PATCH] Fix warning in pwg.categories.php "Undefined variable: total_images" message when request category does not exist --- include/ws_functions/pwg.categories.php | 1 + 1 file changed, 1 insertion(+) diff --git a/include/ws_functions/pwg.categories.php b/include/ws_functions/pwg.categories.php index 734ef0401..5e16cef4d 100644 --- a/include/ws_functions/pwg.categories.php +++ b/include/ws_functions/pwg.categories.php @@ -22,6 +22,7 @@ function ws_categories_getImages($params, &$service) $images = array(); $image_ids = array(); + $total_images = 0; //------------------------------------------------- get the related categories $where_clauses = array();