From b5c8004951c069a6ebad79799b5432d5f1350287 Mon Sep 17 00:00:00 2001 From: Pim Snel Date: Tue, 10 Aug 2004 19:38:32 +0000 Subject: [PATCH] striptags from title --- phpgwapi/templates/idots/head.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/templates/idots/head.inc.php b/phpgwapi/templates/idots/head.inc.php index 4d92c02543..7b6c53706c 100644 --- a/phpgwapi/templates/idots/head.inc.php +++ b/phpgwapi/templates/idots/head.inc.php @@ -86,7 +86,7 @@ 'lang_code'=> $lang_code, 'charset' => $GLOBALS['phpgw']->translation->charset(), 'font_family' => $GLOBALS['phpgw_info']['theme']['font'], - 'website_title' => $GLOBALS['phpgw_info']['server']['site_title']. ($app ? " [$app]" : ''), + 'website_title' => strip_tags($GLOBALS['phpgw_info']['server']['site_title']. ($app ? " [$app]" : '')), 'body_tags' => $bodyheader .' '. $GLOBALS['phpgw']->common->get_body_attribs(), 'theme_css' => $theme_css, 'css' => $GLOBALS['phpgw']->common->get_css(),