From 28e63339904aabcfa278fcbb9145a46739c2763f Mon Sep 17 00:00:00 2001 From: petere78 Date: Mon, 19 Apr 2004 09:15:51 +0000 Subject: [PATCH] Don't display empty parentheses in title when there is no domain. --- setup/check_install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/check_install.php b/setup/check_install.php index f41d59b707..46a358b298 100644 --- a/setup/check_install.php +++ b/setup/check_install.php @@ -406,7 +406,7 @@ 'T_footer' => 'footer.tpl', )); $ConfigDomain = get_var('ConfigDomain',Array('POST','COOKIE')); - $GLOBALS['phpgw_setup']->html->show_header(lang('Checking the eGroupWare Installation'),False,'config',$ConfigDomain . '(' . @$phpgw_domain[$ConfigDomain]['db_type'] . ')'); + $GLOBALS['phpgw_setup']->html->show_header(lang('Checking the eGroupWare Installation'),False,'config',$ConfigDomain ? $ConfigDomain . '(' . @$phpgw_domain[$ConfigDomain]['db_type'] . ')' : ''); echo '

'.lang('Checking the eGroupWare Installation')."

\n"; echo "
\n";;
 	}