From 2b25b587cd2585f33a710fe45fc803e65d9b9efe Mon Sep 17 00:00:00 2001 From: halex Date: Sat, 19 Jan 2008 04:41:45 +0000 Subject: [PATCH] Remove un-necessary gettext call. Thanks to Jonny for picking this up. --- src/www/js/Location.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/www/js/Location.js b/src/www/js/Location.js index 0b7cb2b..e0a570d 100644 --- a/src/www/js/Location.js +++ b/src/www/js/Location.js @@ -211,16 +211,16 @@ Dragonfly.Location.prototype.getBreadCrumbs = function () var tab = d.tabs[this.tab]; var handler = tab && this.handler && tab.handlers[this.handler]; - + var res = [ d.format ('{1}', d.escapeHTML (this.getClientUrl ('set')), - d.escapeHTML (_(tab.setLabels [this.set]))) ]; + d.escapeHTML (tab.setLabels [this.set])) ]; if (this.handler && this.handler != tab.defaultHandler) { res.push (d.format (' > {1}', d.escapeHTML (this.getClientUrl ('handler')), - d.escapeHTML (_(handler.label)))); + d.escapeHTML (handler.label))); } var crumb = handler && handler.getBreadCrumbs && handler.getBreadCrumbs (this);