diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-03-12 03:43:40 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-03-12 03:43:40 +0000 |
commit | 5ca9ff5c91776f118f88ccbe9f50512e48006c8d (patch) | |
tree | b4005720a01075b70123591daebd53b843acefb5 | |
parent | 344653e4f8ce192c9b96c6dcdb494c3220e1921d (diff) |
blah
-rwxr-xr-x | ikiwiki | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -658,7 +658,7 @@ EOF exit 0; } #}}} -sub cgi_recentchanges () { #{{{ +sub html_recentchanges ($q) { #{{{ my $q=shift; my $template=HTML::Template->new( @@ -669,7 +669,7 @@ sub cgi_recentchanges () { #{{{ wikiname => $wikiname, changelog => [rcs_recentchanges(100)], ); - print $template->output; + print $q->header, $template->output; } #}}} sub cgi_signin ($$) { #{{{ @@ -790,7 +790,7 @@ sub cgi () { #{{{ } if ($do eq 'recentchanges') { - cgi_recentchanges(); + cgi_recentchanges($q); return; } |