From 8a85434732359344eada1ffe8f6e17dc74b3c04b Mon Sep 17 00:00:00 2001 From: Diego Najar Date: Wed, 20 Dec 2017 00:25:42 +0100 Subject: [PATCH] Bug fix for 521 --- bl-kernel/abstract/plugin.class.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bl-kernel/abstract/plugin.class.php b/bl-kernel/abstract/plugin.class.php index 01671df1..66d80d0a 100644 --- a/bl-kernel/abstract/plugin.class.php +++ b/bl-kernel/abstract/plugin.class.php @@ -86,7 +86,7 @@ class Plugin { { $tmp = new dbJSON($this->filenameDb); $tmp->db = $this->db; - $tmp->save(); + return $tmp->save(); } public function htmlPath() @@ -275,7 +275,6 @@ class Plugin { $this->db[$key] = $value; } } - return $this->save(); }