diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-01-05 02:23:31 -0500 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-01-05 02:23:31 -0500 |
commit | ceffae8af1c797a715ad8bc375ee3f233703b03d (patch) | |
tree | 8b0b74ec0228d693069499223e5d7e89803923ce /IkiWiki/Plugin | |
parent | 9e891f538e48b0c686430889583ed24cf767c0ea (diff) | |
download | ikiwiki-ceffae8af1c797a715ad8bc375ee3f233703b03d.tar ikiwiki-ceffae8af1c797a715ad8bc375ee3f233703b03d.tar.gz |
* aggregate: Only save state if it was already loaded. This didn't used to
* table: Fix dependency tracking for external data files. Closes: #458387
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r-- | IkiWiki/Plugin/table.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/IkiWiki/Plugin/table.pm b/IkiWiki/Plugin/table.pm index 02a2ba05d..ddc2f68be 100644 --- a/IkiWiki/Plugin/table.pm +++ b/IkiWiki/Plugin/table.pm @@ -22,6 +22,7 @@ sub preprocess (@) { #{{{ return "[[table ".gettext("cannot find file")."]]"; } $params{data} = readfile(srcfile($params{file})); + add_depends($params{page}, $params{file}); } if (lc $params{format} eq 'auto') { |