From: ivan Date: Thu, 4 Oct 2007 01:56:12 +0000 (+0000) Subject: this *should* fix munging of non-internal links, i hope X-Git-Tag: TRIXBOX_2_6~314 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=cba52e92e2c48ce1052086d3954375e686f2d179 this *should* fix munging of non-internal links, i hope --- diff --git a/bin/pod2x b/bin/pod2x index 4a3e800d8..5c23ddd46 100755 --- a/bin/pod2x +++ b/bin/pod2x @@ -106,7 +106,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;