From d104e5ec1cbf99660b354c6fbbc7f8a30f2c4f86 Mon Sep 17 00:00:00 2001 From: Andreas Date: Thu, 19 Sep 2019 13:50:28 +0200 Subject: [PATCH] fixed this reference maybe --- dev_mvc/model/testactions/TestAction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev_mvc/model/testactions/TestAction.php b/dev_mvc/model/testactions/TestAction.php index 96a82ca..1bd36f9 100644 --- a/dev_mvc/model/testactions/TestAction.php +++ b/dev_mvc/model/testactions/TestAction.php @@ -3,7 +3,7 @@ class TestAction{ function TestAction(){ if(isset($_POST['auth'])){ if($_POST['auth'] == getenv('ADMIN_ACTION_KEY')){ - execute(); + $this->execute(); }else{ self::logMessage('you have no authorization to do that', 'FAILURE'); }