mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 08:23:12 +01:00
fixed wrong img dir
This commit is contained in:
parent
49492cab51
commit
c069d67023
@ -32,8 +32,8 @@
|
||||
$tpl->set_file(array('head' => 'head.tpl'));
|
||||
|
||||
$var = Array (
|
||||
'img_icon' => PHPGW_IMAGES . '/favicon.ico',
|
||||
'img_shortcut' => PHPGW_IMAGES . '/favicon.ico',
|
||||
'img_icon' => PHPGW_IMAGES_DIR . '/favicon.ico',
|
||||
'img_shortcut' => PHPGW_IMAGES_DIR . '/favicon.ico',
|
||||
'charset' => lang('charset'),
|
||||
'font_family' => $GLOBALS['phpgw_info']['theme']['font'],
|
||||
'website_title' => $GLOBALS['phpgw_info']['server']['site_title'],
|
||||
|
@ -42,8 +42,8 @@
|
||||
$tpl->set_unknowns('remove');
|
||||
$tpl->set_file(array('head' => 'head.tpl'));
|
||||
$var = Array (
|
||||
'img_icon' => PHPGW_IMAGES . '/favicon.ico',
|
||||
'img_shortcut' => PHPGW_IMAGES . '/favicon.ico',
|
||||
'img_icon' => PHPGW_IMAGES_DIR . '/favicon.ico',
|
||||
'img_shortcut' => PHPGW_IMAGES_DIR . '/favicon.ico',
|
||||
'charset' => lang('charset'),
|
||||
'font_family' => $GLOBALS['phpgw_info']['theme']['font'],
|
||||
'website_title' => $GLOBALS['phpgw_info']['server']['site_title'],
|
||||
|
@ -31,15 +31,16 @@
|
||||
$tpl->set_unknowns('remove');
|
||||
$tpl->set_file(array('head' => 'head.tpl'));
|
||||
|
||||
$var = Array (
|
||||
'img_icon' => PHPGW_IMAGES . '/favicon.ico',
|
||||
'img_shortcut' => PHPGW_IMAGES . '/favicon.ico',
|
||||
$var = Array
|
||||
(
|
||||
'img_icon' => PHPGW_IMAGES_DIR . '/favicon.ico',
|
||||
'img_shortcut' => PHPGW_IMAGES_DIR . '/favicon.ico',
|
||||
'webserver_url' => $GLOBALS['phpgw_info']['server']['webserver_url'],
|
||||
'home' => $GLOBALS['phpgw']->link('/index.php'),
|
||||
'appt' => $GLOBALS['phpgw']->link('/index.php',Array('menuaction'=>'calendar.uicalendar.day')),
|
||||
'todo' => $GLOBALS['phpgw']->link('/index.php',Array('menuaction'=>'todo.uitodo.add')),
|
||||
'prefs' => $GLOBALS['phpgw']->link('/preferences/index.php'),
|
||||
'email' => $GLOBALS['phpgw']->link('/email/preferences.php'),
|
||||
'home' => $GLOBALS['phpgw']->link('/index.php'),
|
||||
'appt' => $GLOBALS['phpgw']->link('/index.php',Array('menuaction'=>'calendar.uicalendar.day')),
|
||||
'todo' => $GLOBALS['phpgw']->link('/index.php',Array('menuaction'=>'todo.uitodo.add')),
|
||||
'prefs' => $GLOBALS['phpgw']->link('/preferences/index.php'),
|
||||
'email' => $GLOBALS['phpgw']->link('/email/preferences.php'),
|
||||
'calendar' => $GLOBALS['phpgw']->link('/index.php',Array('menuaction'=>'calender.uicalendar.preferences')),
|
||||
'addressbook' => $GLOBALS['phpgw']->link('/index.php',Array('menuaction'=>'addressbook.uiaddressbook.preferences')),
|
||||
'charset' => lang('charset'),
|
||||
|
Loading…
Reference in New Issue
Block a user