summaryrefslogtreecommitdiffstats
path: root/globals.pl
diff options
context:
space:
mode:
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/ /\ /g;
- return $var;
- } ,
} ,
}
) || DisplayError("Template creation failed: " . Template->error())