diff options
author | Joey Hess <joey@kitenet.net> | 2010-04-24 16:00:18 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-04-24 16:00:18 -0400 |
commit | 7099978b7255db504ea17ccd07533e86c2b262fa (patch) | |
tree | 123e681492471132ba2b03496297f13847206deb | |
parent | a95d824cb43b9ffadb802f0804818b329f57d69a (diff) | |
download | ikiwiki-7099978b7255db504ea17ccd07533e86c2b262fa.tar ikiwiki-7099978b7255db504ea17ccd07533e86c2b262fa.tar.gz |
bugfix
-rw-r--r-- | IkiWiki.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/IkiWiki.pm b/IkiWiki.pm index 7382f11e4..8bae6b72f 100644 --- a/IkiWiki.pm +++ b/IkiWiki.pm @@ -1712,7 +1712,8 @@ sub misctemplate ($$;@) { my $title=shift; my $pagebody=shift; - my $template=template("misc.tmpl", + my $template=template("misc.tmpl"); + $template->param( title => $title, indexlink => indexlink(), wikiname => $config{wikiname}, |