diff --git a/about.php b/about.php index 19fe285dcf..5d52eb8790 100644 --- a/about.php +++ b/about.php @@ -36,23 +36,24 @@ function about_app() 'license' => lang('License') ); - $s = "
$info[title] |
$info[title] | |
$info[description] | |
$info[description] | |
$info[note] | |
$info[note] | |
$val | "; + $s .= " |
$val | ";
$infos = $info[$key];
for ($n = 0; is_array($info[$key][$n]) && ($infos = $info[$key][$n]) || !$n; ++$n)
{
@@ -73,7 +74,7 @@ function about_app()
{
if ($infos) $infos .= ' '; $name = $names ? array_shift($names) : $user; - $infos .= "$name"; + $infos .= "$name"; array_shift($emails); array_shift($emails); } } @@ -101,9 +102,9 @@ function about_app() )); $tpl->set_var('phpgw_logo',$GLOBALS['phpgw']->common->image('phpgwapi','logo.gif')); - $tpl->set_var('phpgw_version',lang('phpGroupWare API version %1',$GLOBALS['phpgw_info']['server']['versions']['phpgwapi'])); - $tpl->set_var('phpgw_message',lang('%1phpGroupWare%2 is a multi-user, web-based groupware suite written in %3PHP%4.', - '','','','')); + $tpl->set_var('phpgw_version',lang('eGroupWare API version %1',$GLOBALS['phpgw_info']['server']['versions']['phpgwapi'])); + $tpl->set_var('phpgw_message',lang('%1eGroupWare%2 is a multi-user, web-based groupware suite written in %3PHP%4.', + '','','','')); if ($included) { |