fixed spelling error which caused the green check to displayed at the admin-account section even if no user accounts exist

This commit is contained in:
Ralf Becker 2004-11-17 12:48:22 +00:00
parent 589116a6bc
commit be74b456aa

View File

@ -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',