From 2d30330f98ff783432b30c15a55553ab843c039f Mon Sep 17 00:00:00 2001 From: Roy Orbitson Date: Wed, 9 Aug 2023 11:21:06 +0930 Subject: [PATCH] No-verify plugin breaks others Does not need to block other plugins from using the head() method. --- plugins/version-noverify.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/plugins/version-noverify.php b/plugins/version-noverify.php index 8d486b54..cbf79d8e 100644 --- a/plugins/version-noverify.php +++ b/plugins/version-noverify.php @@ -7,10 +7,9 @@ * @license https://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other) */ class AdminerVersionNoverify { - + function head() { echo script("verifyVersion = function () {};"); - return true; } - + }