From cf76f86f098a6f42268ffb0c90a971359b399b11 Mon Sep 17 00:00:00 2001 From: NOrtmann1 Date: Sat, 18 Jul 2026 14:25:27 +0200 Subject: [PATCH] debugging --- content/search-results.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/search-results.php b/content/search-results.php index 31430a7..1a7fd0b 100644 --- a/content/search-results.php +++ b/content/search-results.php @@ -2,7 +2,7 @@ if (session_status() === PHP_SESSION_NONE) { session_start(); } - +error_log("DEBUG search-results.php: search_results count = " . count($_SESSION["search_results"] ?? []) . ", query = " . ($_SESSION["search_query"] ?? "LEER")); $all_results = $_SESSION["search_results"] ?? []; $query = $_SESSION["search_query"] ?? ""; $totalResultsCount = count($all_results);