From 09faf94e335c9a3fb67fe09bee049ada05b51a3e Mon Sep 17 00:00:00 2001 From: DanieL Date: Wed, 6 Jul 2022 20:18:45 -0300 Subject: [PATCH] Fix --- objects/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/functions.php b/objects/functions.php index 8d950d71f0..a0a3fa21d9 100644 --- a/objects/functions.php +++ b/objects/functions.php @@ -2873,7 +2873,7 @@ function forbidIfRequestDoesNotComesFromSameDomainAsMyAVideo(){ global $global; if(empty($global['bypassSameDomainCheck']) && !requestComesFromSameDomainAsMyAVideo()){ _error_log('forbidIfRequestDoesNotComesFromSameDomainAsMyAVideo: '. json_encode(debug_backtrace()), AVideoLog::$SECURITY); - forbiddenPage('The request must come from same domain', true); + forbiddenPage('Invalid Request '. getRealIpAddr(), true); } }