From 66f5e104b162c9d5dca44cf4ea0a423bdec5da29 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Sat, 25 Mar 2017 15:13:28 +0100 Subject: [PATCH] and without self:: ;-( Signed-off-by: Roland Haeder --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index 92acb1b248..1d6772b17c 100644 --- a/boot.php +++ b/boot.php @@ -1277,7 +1277,7 @@ class App { $backends[] = "xrd"; // Check if current module is in backend or backend flag is set - return (in_array($this->module, self::$backends) || $this->backend); + return (in_array($this->module, $backends) || $this->backend); } /**