From: ivan Date: Thu, 4 Oct 2007 01:56:13 +0000 (+0000) Subject: this *should* fix munging of non-internal links, i hope X-Git-Tag: freeside_1_7_3rc1~314 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=db629e8d4e0c83b7cbe71205f7c9f1fa8fd8a23c;p=freeside.git this *should* fix munging of non-internal links, i hope --- diff --git a/bin/pod2x b/bin/pod2x index 5327435a2..693b140fe 100755 --- a/bin/pod2x +++ b/bin/pod2x @@ -104,7 +104,7 @@ foreach my $file ( open(RAW, "<$html/$name.rawwiki") or die $!; open(WIKI,">$html/$name.wiki" ) or die $!; while () { - s/\[\[([^#][^\]]*)\]\]/"[[$html\/". w_e($1). "|$1]]"/ge; + s/\[\[([^#\/][^\]]*)\]\]/"[[$html\/". w_e($1). "|$1]]"/ge; print WIKI $_; } close RAW;