read all installed apps and not just the enabled ones

This commit is contained in:
Ralf Becker 2010-01-27 05:22:41 +00:00
parent cc848debf2
commit 5e3541c5b2

View File

@ -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'];