summaryrefslogtreecommitdiffstats
path: root/globals.pl
diff options
context:
space:
mode:
authorbbaetz%student.usyd.edu.au <>2002-07-01 12:28:50 +0200
committerbbaetz%student.usyd.edu.au <>2002-07-01 12:28:50 +0200
commitaa7127c201ab8be7b6ba7f70767086c4fc6d1e44 (patch)
treeeab4af26dc4ce8cbbbd9558faf559a8517251f7d /globals.pl
parent3d5db0fc3ba11a5fee1428466a1542bca7551287 (diff)
downloadbugzilla-aa7127c201ab8be7b6ba7f70767086c4fc6d1e44.tar.gz
bugzilla-aa7127c201ab8be7b6ba7f70767086c4fc6d1e44.tar.xz
Bug 150770 - Lost <nobr> arround query results
r=jouni, justdave
Diffstat (limited to 'globals.pl')
-rw-r--r--globals.pl9
1 files changed, 0 insertions, 9 deletions
diff --git a/globals.pl b/globals.pl
index 6e84cb0da..fdb189498 100644
--- a/globals.pl
+++ b/globals.pl
@@ -1568,15 +1568,6 @@ $::template ||= Template->new(
# filter should be used for a full URL that may have
# characters that need encoding.
url_quote => \&url_quote ,
-
- # Returns the text with spaces converted to non-breaking space
- # HTML entities.
- no_break => sub
- {
- my ($var) = @_;
- $var =~ s/ /\&nbsp;/g;
- return $var;
- } ,
} ,
}
) || DisplayError("Template creation failed: " . Template->error())