diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-01-25 11:55:12 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-01-25 11:55:12 -0500 |
commit | e506648cbcda0b6021cf0a3b5e2f6381d8f1d0ea (patch) | |
tree | cbb12b785f0ef33e725ef24a277fef7a682af5ff /app/Model/Config.php | |
parent | 655d75a3cf154d14b10ffbf2baa42a549cf214f7 (diff) |
Do not show inactive projects info on the dashboard and update picodb (merge #546)
Diffstat (limited to 'app/Model/Config.php')
-rw-r--r-- | app/Model/Config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Model/Config.php b/app/Model/Config.php index e6d66734..d078a00a 100644 --- a/app/Model/Config.php +++ b/app/Model/Config.php @@ -110,7 +110,7 @@ class Config extends Base */ public function getAll() { - return $this->db->table(self::TABLE)->listing('option', 'value'); + return $this->db->hashtable(self::TABLE)->getAll('option', 'value'); } /** |