From: hickert Date: Wed, 25 May 2005 11:07:41 +0000 (+0000) Subject: Link must contain "&" instead of "&". X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=421606f7ebb06693063a3e3a5722d66e7ea4284e;p=gosa.git Link must contain "&" instead of "&". W3c git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@440 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/include/functions.inc b/include/functions.inc index e6162f379..8e85fb445 100644 --- a/include/functions.inc +++ b/include/functions.inc @@ -916,7 +916,7 @@ function gen_locked_message($user, $dn) /* Prepare and show template */ $smarty= get_smarty(); $smarty->assign ("dn", $dn); - $smarty->assign ("message", sprintf(_("You're going to edit the LDAP entry '%s' which appears to be used by '%s'. Please contact the person in order to clarify proceedings."), $dn, "$uid")); + $smarty->assign ("message", sprintf(_("You're going to edit the LDAP entry '%s' which appears to be used by '%s'. Please contact the person in order to clarify proceedings."), $dn, "$uid")); return ($smarty->fetch (get_template_path('islocked.tpl'))); }