web commit by http://ethan.betacantrips.com/: this part was unrelated, right?

master
joey 2007-04-06 23:51:19 +00:00
parent e589e24fad
commit 3ad33d9fde
1 changed files with 0 additions and 14 deletions

View File

@ -107,20 +107,6 @@ Index: IkiWiki.pm
===================================================================
--- IkiWiki.pm (revision 3158)
+++ IkiWiki.pm (working copy)
@@ -550,11 +550,11 @@
$content =~ s{(\\?)$config{wiki_link_regexp}}{
defined $2
? ( $1
- ? "[[$2|$3".(length $4 ? "#$4" : "")."]]"
+ ? "[[$2|$3".($4 ? "#$4" : "")."]]"
: htmllink($lpage, $page, linkpage($3),
anchor => $4, linktext => pagetitle($2)))
: ( $1
- ? "[[$3".(length $4 ? "#$4" : "")."]]"
+ ? "[[$3".($4 ? "#$4" : "")."]]"
: htmllink($lpage, $page, linkpage($3),
anchor => $4))
}eg;
@@ -628,6 +628,14 @@
preview => $preprocess_preview,
);