From be74b456aa50ba47f33ce93e058cdf6bab35ae90 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Wed, 17 Nov 2004 12:48:22 +0000 Subject: [PATCH] fixed spelling error which caused the green check to displayed at the admin-account section even if no user accounts exist --- setup/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/index.php b/setup/index.php index 4587777a47..5d4575a903 100644 --- a/setup/index.php +++ b/setup/index.php @@ -399,8 +399,8 @@ // Note: this does not check the availiblitly of accounts via other auth-methods then sql !!! $GLOBALS['phpgw_setup']->db->query("SELECT count(*) FROM phpgw_accounts WHERE account_type='u' AND account_lid!='anonymous'",__LINE__,__FILE__); $no_accounts = !$GLOBALS['phpgw_setup']->db->next_record() || !$GLOBALS['phpgw_setup']->db->f(0); - $setup_tpl->set_var('admin_status_img',$no_account ? $incomplete : $completed); - $setup_tpl->set_var('admin_status_alt',$no_account ? lang('not completed') : lang('completed')); + $setup_tpl->set_var('admin_status_img',$no_accounts ? $incomplete : $completed); + $setup_tpl->set_var('admin_status_alt',$no_accounts ? lang('not completed') : lang('completed')); $setup_tpl->set_var('admin_table_data',$GLOBALS['phpgw_setup']->html->make_frm_btn_simple( $no_accounts ? lang('No accounts existing') : lang('Accounts existing'), 'POST','setup_demo.php',