From 6a4010a9afb40d8e631c1eca77880444d5cc9be0 Mon Sep 17 00:00:00 2001 From: Shoghi Cervantes Pueyo Date: Thu, 25 Apr 2013 18:52:14 +0200 Subject: [PATCH] Fixed plugins not generating their config file --- src/utils/Config.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/Config.php b/src/utils/Config.php index f79edc642f..becdff936b 100644 --- a/src/utils/Config.php +++ b/src/utils/Config.php @@ -69,6 +69,7 @@ class Config{ } if(!file_exists($file)){ $this->config = $default; + $this->save(); }else{ if($this->type === CONFIG_DETECT){ $extension = explode(".", basename($this->file));