This commit is contained in:
bgigon 2004-07-22 10:32:29 +00:00
parent 8fb8a24e09
commit 0b9e411491

View File

@ -96,6 +96,8 @@
}
// Rejected Lines
if( is_array($GLOBALS['phpgw_setup']->translation->sql->line_rejected) )
{
unset($str);
foreach($GLOBALS['phpgw_setup']->translation->sql->line_rejected as $badline)
{
@ -107,6 +109,8 @@
}
$setup_tpl->set_var('V_alert_word', lang("Rejected lines"));
$setup_tpl->set_var('V_alert_msg', $str);
$alert = TRUE;
}
$setup_tpl->set_var('stage_title',$stage_title);
$setup_tpl->set_var('stage_desc',$stage_desc);
@ -122,6 +126,9 @@
$GLOBALS['phpgw_setup']->html->show_header("$stage_title",False,'config',$GLOBALS['phpgw_setup']->ConfigDomain . '(' . $phpgw_domain[$GLOBALS['phpgw_setup']->ConfigDomain]['db_type'] . ')');
$setup_tpl->pparse('out','T_lang_main');
if($alert)
$setup_tpl->pparse('out','T_alert_msg');
$GLOBALS['phpgw_setup']->html->show_footer();
?>