From aed46a3bdcbd51df386bf237b181b6d24d03110c Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Fri, 3 Apr 2009 11:14:49 -0500 Subject: [PATCH] fix syntax error in tags JavaScript FF will tolerate a trailing comma in an array literal, but Internet Explorer does not. Signed-off-by: Galen Charlton --- koha-tmpl/opac-tmpl/prog/en/js/tags.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/prog/en/js/tags.js b/koha-tmpl/opac-tmpl/prog/en/js/tags.js index 83f5be895d..8d04761a30 100644 --- a/koha-tmpl/opac-tmpl/prog/en/js/tags.js +++ b/koha-tmpl/opac-tmpl/prog/en/js/tags.js @@ -75,7 +75,7 @@ KOHA.Tags = { scrubbed : function(arg) {return (_("Note: your tag contained markup code that was removed. The tag was added as '" +arg+ "'."));}, failed_add_tag : function(arg) {return (_("Error! The add_tag operation failed on '" +arg+ "'. Note: you can only tag an item with a given term once. Check 'My Tags' to see your current tags."));}, failed_delete : function(arg) {return (_("Error! You cannot delete the tag '" +arg+ "'. Note: you can only delete your own tags."));}, - login : function(arg) {return (_("You must be logged in to add tags."));}, + login : function(arg) {return (_("You must be logged in to add tags."));} }, // Used to tag multiple items at once. The main difference -- 2.20.1