fixed the code, which was not working after the right table-name was used ;-)

dont think that part is used anyhow
This commit is contained in:
Ralf Becker 2004-07-22 18:40:19 +00:00
parent faa4caa918
commit 1a585efd36

View File

@ -326,8 +326,7 @@
}
@$GLOBALS['phpgw_setup']->db->query("select config_value from $config_table where config_name='freshinstall'");
$GLOBALS['phpgw_setup']->db->next_record();
$configed = $GLOBALS['phpgw_setup']->db->f('config_value');
$configured = $GLOBALS['phpgw_setup']->db->next_record() ? $GLOBALS['phpgw_setup']->db->f('config_value') : False;
if($configed)
{
$GLOBALS['phpgw_info']['setup']['header_msg'] = 'Stage 2 (Needs Configuration)';