From: Michael M Slusarz Date: Thu, 29 Jul 2010 16:25:30 +0000 (-0600) Subject: addslashes() not needed - handled by JSON encoding X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=6d1acd383b9a13f5ac979050ab53cd076c2715a5;p=horde.git addslashes() not needed - handled by JSON encoding --- diff --git a/kronolith/templates/javascript_defs.php b/kronolith/templates/javascript_defs.php index e5402cbd7..c6a6552c6 100644 --- a/kronolith/templates/javascript_defs.php +++ b/kronolith/templates/javascript_defs.php @@ -15,11 +15,11 @@ $var = array( ); /* Gettext strings used in core javascript files. */ -$gettext = array_map('addslashes', array( +$gettext = array( 'close' => _("Close"), 'enddate_error' => _("The end date must be later than the start date."), 'loading' => _("Loading ..."), -)); +); ?>