From ade5eb93ead4b056719abeacb194a6a501aa37cf Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Tue, 8 Jun 2010 08:50:15 +0000 Subject: [PATCH] fixed not working generation of image url for templates --- phpgwapi/inc/class.about.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.about.inc.php b/phpgwapi/inc/class.about.inc.php index 9f5a9f21ec..de380cba85 100644 --- a/phpgwapi/inc/class.about.inc.php +++ b/phpgwapi/inc/class.about.inc.php @@ -219,7 +219,7 @@ class about function _getParsedTemplateInfo($info) { // define the return array - $info['image'] = file_exists(EGW_SERVER_ROOT.'/'.$info['icon']) ? '/'.$info['icon'] : common::image('thisdoesnotexist',array('navbar','nonav')); + $info['image'] = file_exists(EGW_SERVER_ROOT.'/'.$info['icon']) ? $GLOBALS['egw_info']['server']['webserver_url'].'/'.$info['icon'] : common::image('thisdoesnotexist',array('navbar','nonav')); $info['author'] = $this->_getHtmlPersonalInfo($info, 'author'); $info['maintainer'] = $this->_getHtmlPersonalInfo($info, 'maintainer');