From 5e3541c5b20a6970a44a65e480bcba584d5c1e98 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Wed, 27 Jan 2010 05:22:41 +0000 Subject: [PATCH] read all installed apps and not just the enabled ones --- phpgwapi/inc/class.applications.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.applications.inc.php b/phpgwapi/inc/class.applications.inc.php index 84b4bb482d..03e255e05a 100755 --- a/phpgwapi/inc/class.applications.inc.php +++ b/phpgwapi/inc/class.applications.inc.php @@ -252,7 +252,7 @@ class applications */ function read_installed_apps() { - foreach($this->db->select($this->table_name,'*','app_enabled != 0',__LINE__,__FILE__,false,'ORDER BY app_order ASC') as $row) + foreach($this->db->select($this->table_name,'*',false,__LINE__,__FILE__,false,'ORDER BY app_order ASC') as $row) { $title = $app_name = $row['app_name'];