From 3c3f38ec2c2652af56b9adc3cbb5cb471bfc489e Mon Sep 17 00:00:00 2001 From: Miles Lott Date: Sat, 8 Sep 2001 16:07:05 +0000 Subject: [PATCH] Fix for when to show application status --- home.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home.php b/home.php index c4529a88d4..a8aef1bd16 100755 --- a/home.php +++ b/home.php @@ -139,7 +139,6 @@ $GLOBALS['phpgw']->db->query("select app_name,app_version from phpgw_applications",__LINE__,__FILE__); while($GLOBALS['phpgw']->db->next_record()) { - $_found = True; $_db_version = $GLOBALS['phpgw']->db->f('app_version'); $_app_name = $GLOBALS['phpgw']->db->f('app_name'); $_versionfile = $GLOBALS['phpgw']->common->get_app_dir($_app_name) . '/setup/setup.inc.php'; @@ -152,6 +151,7 @@ if($GLOBALS['phpgw']->common->cmp_version_long($_db_version,$_file_version)) { + $_found = True; $_app_string .= '
' . lang($_app_title); } unset($_file_version);