X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/6f2c69a375055fa5c6ac9dc77eabbb9276032017..965afd875cd168713e9351d3c4c992c31f0bea0a:/ikiwiki
diff --git a/ikiwiki b/ikiwiki
index 129076f75..e59051860 100755
--- a/ikiwiki
+++ b/ikiwiki
@@ -645,10 +645,10 @@ sub cgi () {
my $list="
\n";
foreach my $change (rcs_recentchanges(100)) {
$list.="- ";
- $list.=join(", ", map { htmllink("index", $_, 1) } @{$change->{pages}});
+ $list.=join(", ", map { htmllink("", $_, 1) } @{$change->{pages}});
$list.="
\n";
$list.="changed ".$change->{when}." by ".
- htmllink("index", $change->{user}, 1).
+ htmllink("", $change->{user}, 1).
": ".$change->{message}."\n";
$list.=" \n";
}
@@ -701,6 +701,7 @@ sub cgi () {
print $q->header,
$q->start_html("Creating $page"),
$q->start_h1("$wikiname/ Creating $page"),
+ $q->end_hi,
$q->start_form(-action => $action),
$q->hidden('do'),
"Select page location:",
@@ -728,6 +729,7 @@ sub cgi () {
print $q->header,
$q->start_html("Editing $page"),
$q->h1("$wikiname/ Editing $page"),
+ $q->end_hi,
$q->start_form(-action => $action),
$q->hidden('do'),
$q->hidden('page'),