diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2008-12-26 16:11:13 -0500 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2008-12-26 16:11:13 -0500 |
commit | c4f3d0554a02eba93d94d4c0914f4afddf85274b (patch) | |
tree | 1db225e14c4e05d2522ee122ee2845b69e3e83d5 /IkiWiki/Plugin | |
parent | 733c7592b7f7103cc73dc563e827da2a0bab8674 (diff) | |
parent | 7da319efc69089662f9635216bbcc48ca53fe606 (diff) |
Merge branch 'master' into next
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r-- | IkiWiki/Plugin/inline.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/inline.pm b/IkiWiki/Plugin/inline.pm index b88efc0ba..26bb120a2 100644 --- a/IkiWiki/Plugin/inline.pm +++ b/IkiWiki/Plugin/inline.pm @@ -1,4 +1,4 @@ -#!/usr/bin/perl +!/usr/bin/perl # Page inlining and blogging. package IkiWiki::Plugin::inline; @@ -22,7 +22,7 @@ sub import { call => \&IkiWiki::preprocess_inline); hook(type => "pagetemplate", id => "inline", call => \&IkiWiki::pagetemplate_inline); - hook(type => "format", id => "inline", call => \&format); + hook(type => "format", id => "inline", call => \&format, first => 1); # Hook to change to do pinging since it's called late. # This ensures each page only pings once and prevents slow # pings interrupting page builds. |