From 9d359654fafa7f96ef330089563d1ce80300f5a8 Mon Sep 17 00:00:00 2001 From: Daniel Neto Date: Tue, 15 Oct 2024 11:05:38 -0300 Subject: [PATCH] https://github.com/WWBN/AVideo/issues/9510 --- objects/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/functions.php b/objects/functions.php index 4f03091b3ec6..fc627095d62c 100644 --- a/objects/functions.php +++ b/objects/functions.php @@ -7390,7 +7390,7 @@ function storeAndGetExternalReferrer() // Check if the session does not have an external referrer or if it's different from the current one if (!isset($_SESSION['external_referrer']) || $_SESSION['external_referrer'] !== $sanitizedReferrer) { if (!empty($sanitizedReferrer)) { - _error_log('external_referrer changed' . json_encode(debug_backtrace()), AVideoLog::$ERROR); + _error_log('external_referrer changed' . json_encode(debug_backtrace())); // Store the sanitized and escaped external referrer in the session $_SESSION['external_referrer'] = htmlspecialchars($sanitizedReferrer, ENT_QUOTES, 'UTF-8'); }