From: hickert Date: Thu, 12 Apr 2007 09:36:08 +0000 (+0000) Subject: Fixed escaped html tags in warnssl message. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=8829e0b9cd7e0fed7d8cb8f720b623a6de2f490a;p=gosa.git Fixed escaped html tags in warnssl message. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@6027 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/html/index.php b/html/index.php index 2c882c202..927fadfa4 100644 --- a/html/index.php +++ b/html/index.php @@ -46,7 +46,7 @@ function displayLogin() /* Displasy SSL mode warning? */ if ($ssl != "" && $config->data['MAIN']['WARNSSL'] == 'true'){ - $smarty->assign ("ssl", ""._("Warning").":<\/b> "._("Session will not be encrypted.")." "._("Enter SSL session")."<\/b>!"); + $smarty->assign ("ssl", ""._("Warning").": "._("Session will not be encrypted.")." "._("Enter SSL session")."!"); } else { $smarty->assign ("ssl", ""); }