[Koha-patches] [PATCH] fix syntax error in tags JavaScript

Galen Charlton galen.charlton at liblime.com
Fri Apr 3 23:08:28 CEST 2009


FF will tolerate a trailing comma in an
array literal, but Internet Explorer does not.
---
 koha-tmpl/opac-tmpl/prog/en/js/tags.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/koha-tmpl/opac-tmpl/prog/en/js/tags.js b/koha-tmpl/opac-tmpl/prog/en/js/tags.js
index 83f5be8..8d04761 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
-- 
1.5.6.5




More information about the Koha-patches mailing list