From 05ec5718bdc60177953efd9300ec48a95ec4c59d Mon Sep 17 00:00:00 2001 From: Tobias Sekan Date: Wed, 8 Apr 2020 12:00:47 +0200 Subject: [PATCH] Fix overriden PHP POST check --- htdocs/admin/system/phpinfo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/admin/system/phpinfo.php b/htdocs/admin/system/phpinfo.php index 776dfc2695f..fcb055c5387 100644 --- a/htdocs/admin/system/phpinfo.php +++ b/htdocs/admin/system/phpinfo.php @@ -98,7 +98,7 @@ else print ''; print 'GET and POST support'; -if (! isset($_GET["testget"]) && ! isset($_POST["testpost"])) +if (! isset($_GET["testget"]) && ! isset($_POST["testpost"]) && ! isset($_GET["mainmenu"])) { print 'Warning '.$langs->trans("PHPSupportPOSTGETKo"); print ' ('.$langs->trans("Recheck").')';