diff options
author | Joey Hess <joey@kitenet.net> | 2012-03-21 15:47:34 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-03-21 15:48:25 -0400 |
commit | aaa72a3a80f89da0aec59360db11c7aa219058a7 (patch) | |
tree | 3c9f027547efbdc8d7b853b8d6d2a331055b38bb /debian | |
parent | 662ea9971c6608a6a826b8b29ce7294e77304b41 (diff) | |
download | ikiwiki-aaa72a3a80f89da0aec59360db11c7aa219058a7.tar ikiwiki-aaa72a3a80f89da0aec59360db11c7aa219058a7.tar.gz |
inline: When the pagenames list includes pages that do not exist, skip them.
bestlink returns '' if no existing page matches a link. This propigated
through inline and other plugins, causing uninitialized value warnings, and
in some cases (when filecheck was enabled) making the whole directive fail.
Skipping the empty results fixes that, but this is papering over another
problem: If the missing page is later added, there is not dependency
information to know that the inline needs to be updated. Perhaps smcv will
fix that later.
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 5820009ef..0eca18aed 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,8 @@ ikiwiki (3.20120204) UNRELEASED; urgency=low * Remove dead link from plugins/teximg. Closes: #664885 + * inline: When the pagenames list includes pages that do not exist, skip + them. -- Joey Hess <joeyh@debian.org> Wed, 21 Mar 2012 14:33:14 -0400 |