diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-08-12 16:36:35 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-08-12 16:36:35 +0000 |
commit | 2eff1c64abaab87522a44fef6eac6cab10c95792 (patch) | |
tree | 338f56102da942e765120674cec9b76512e0406b /IkiWiki.pm | |
parent | 5a53eca4cafc49f86c8b4a579cfa8cea937045b2 (diff) | |
download | ikiwiki-2eff1c64abaab87522a44fef6eac6cab10c95792.tar ikiwiki-2eff1c64abaab87522a44fef6eac6cab10c95792.tar.gz |
* Set die_on_bad_params => 0 for all templates, to allow users to modify
them without annoyances.
* Suck in the page content when generating an inline archive page, to work
around the meta plugin's lack of caching of title metadata across runs.
Diffstat (limited to 'IkiWiki.pm')
-rw-r--r-- | IkiWiki.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/IkiWiki.pm b/IkiWiki.pm index 0907df6a1..69452792c 100644 --- a/IkiWiki.pm +++ b/IkiWiki.pm @@ -434,6 +434,7 @@ sub template_params (@) { #{{{ }, filename => "$config{templatedir}/$filename", loop_context_vars => 1, + die_on_bad_params => 0, @_; } #}}} |