From 4765a47ad83a1456c373b5092ad17b2388a7261d Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Tue, 17 Jun 2014 10:00:20 -0400 Subject: [PATCH] Bug 6427 [Part 33] - Remove unescaped key value pairs Titles and other values with double quotes will break the javascript. We do not need these unescaped values for any reason. --- .../prog/en/modules/members/account.tt | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/account.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/account.tt index c91565a..d4d6a4e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/account.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/account.tt @@ -512,7 +512,6 @@ function accountVoid( type, id ) { "[% key %]_original": "[% data.$key %]", "[% key %]": "[% data.$key | $KohaDates %]", [% ELSE %] - "[% key %]_original": "[% data.$key %]", "[% key %]": "[% data.$key | replace('"', '\"') %]", [% END %] [% END %] -- 1.7.2.5