From b2df60647d4c6983564c00b8dcdb8d4f61de6d09 Mon Sep 17 00:00:00 2001 From: Matias Griese Date: Thu, 14 Feb 2019 09:56:11 +0200 Subject: [PATCH] Initialize users before plugins on `bin/plugin` commands --- bin/plugin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/plugin b/bin/plugin index 717ec96d2..a64ff8990 100755 --- a/bin/plugin +++ b/bin/plugin @@ -54,9 +54,9 @@ $grav->setup($environment); $grav['config']->init(); $grav['uri']->init(); +$grav['users']; $grav['plugins']->init(); $grav['themes']->init(); -$grav['users']; $app = new Application('Grav Plugins Commands', GRAV_VERSION);