mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 00:29:38 +01:00
update
This commit is contained in:
parent
df3a3a347b
commit
c5526be9e4
@ -1256,7 +1256,7 @@ if (!@is_file(PHPGW_SERVER_ROOT . '/phpgwapi/templates/' . $GLOBALS['phpgw_info'
|
||||
$app_css = 'left';
|
||||
}
|
||||
|
||||
if ($app != 'home' && $app != 'preferences' && $app != 'about' && $app != 'logout' && $app != 'help')
|
||||
if ($app != 'home' && $app != 'preferences' && $app != 'about' && $app != 'logout' && $app != 'help' && $app != 'manual')
|
||||
{
|
||||
$var['applications'][] = array
|
||||
(
|
||||
@ -1266,7 +1266,7 @@ if (!@is_file(PHPGW_SERVER_ROOT . '/phpgwapi/templates/' . $GLOBALS['phpgw_info'
|
||||
'url' => $data['url'],
|
||||
'name' => str_replace('-','_',$app),
|
||||
'statustext' => $data['title'],
|
||||
'css' => $app_css
|
||||
'css' => $app_css
|
||||
);
|
||||
|
||||
if($data['icon_hover'] != '')
|
||||
@ -1317,7 +1317,6 @@ if (!@is_file(PHPGW_SERVER_ROOT . '/phpgwapi/templates/' . $GLOBALS['phpgw_info'
|
||||
$var['current_app'] = $GLOBALS['phpgw_info']['flags']['currentapp'];
|
||||
|
||||
$menuaction = get_var('menuaction',Array('GET'));
|
||||
$xslt_app = get_var('xslt_app',Array('GET'));
|
||||
|
||||
if ($menuaction && $GLOBALS['phpgw_info']['flags']['xslt_app'])
|
||||
{
|
||||
|
@ -184,9 +184,18 @@
|
||||
}
|
||||
}
|
||||
|
||||
if ($this->app_name == 'manual')
|
||||
{
|
||||
$logo_img = $GLOBALS['phpgw']->common->image('phpgwapi','logo','',True);
|
||||
}
|
||||
else
|
||||
{
|
||||
$logo_img = $GLOBALS['phpgw']->common->image($this->app_name,'navbar','',True);
|
||||
}
|
||||
|
||||
$this->output['help_values'][] = array
|
||||
(
|
||||
'img' => $GLOBALS['phpgw']->common->image($this->app_name,'navbar','',True),
|
||||
'img' => $logo_img,
|
||||
'title' => $this->title,
|
||||
'lang_version' => lang('version'),
|
||||
'version' => $this->app_version,
|
||||
|
@ -13,7 +13,7 @@
|
||||
<xsl:value-of select="title"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="version != ''">
|
||||
<xsl:value-of select="lang_version"/>: <xsl:value-of select="version"/>
|
||||
<xsl:value-of select="lang_version"/> <xsl:value-of select="version"/>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</td>
|
||||
|
Loading…
Reference in New Issue
Block a user