summaryrefslogtreecommitdiff
path: root/www/faq2html.pl
diff options
context:
space:
mode:
Diffstat (limited to 'www/faq2html.pl')
-rwxr-xr-xwww/faq2html.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/www/faq2html.pl b/www/faq2html.pl
index eabe674828..15a2390986 100755
--- a/www/faq2html.pl
+++ b/www/faq2html.pl
@@ -1,4 +1,4 @@
1#!/usr/bin/perl 1#!/usr/local/bin/perl
2 2
3# this is really a faq2html and should only be used for this purpose 3# this is really a faq2html and should only be used for this purpose
4 4
@@ -6,7 +6,7 @@ sub fixline {
6 $_ =~ s/\</&lt;/g; 6 $_ =~ s/\</&lt;/g;
7 $_ =~ s/\>/&gt;/g; 7 $_ =~ s/\>/&gt;/g;
8 8
9 $_ =~ s/(http:\/\/([a-zA-Z0-9_.\/-]*)[^\) .\n])/\<a href=\"$1\"\>$1\<\/a\>/g; 9 $_ =~ s/(http:\/\/([a-zA-Z0-9_.\#\/-]*)[^\) .\n])/\<a href=\"$1\"\>$1\<\/a\>/g;
10 10
11 $_ =~ s/(\\|\/)$/$1&nbsp;/g; # clobber backslash on end of line 11 $_ =~ s/(\\|\/)$/$1&nbsp;/g; # clobber backslash on end of line
12} 12}