diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-05-15 17:22:54 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-05-15 17:22:54 -0400 |
commit | 8a888a8fedd63622154865f0b67b3558879ae613 (patch) | |
tree | 241fb347f181cb573946b548303b184fc473e989 | |
parent | 1919d0bd8ecb507169fd4c7f516eb5f69b1db555 (diff) |
inline: Display a message if the 'pages' parameter is missing, before it just expanded to nothing.
-rw-r--r-- | IkiWiki/Plugin/inline.pm | 2 | ||||
-rw-r--r-- | debian/changelog | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/inline.pm b/IkiWiki/Plugin/inline.pm index d7117b611..1fbd8b69c 100644 --- a/IkiWiki/Plugin/inline.pm +++ b/IkiWiki/Plugin/inline.pm @@ -102,7 +102,7 @@ sub preprocess_inline (@) { #{{{ my %params=@_; if (! exists $params{pages}) { - return ""; + return "[[inline ".gettext("missing pages parameter")."]]"; } my $raw=yesno($params{raw}); my $archive=yesno($params{archive}); diff --git a/debian/changelog b/debian/changelog index c5b46f367..ca916bcd3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,6 +7,8 @@ ikiwiki (2.47) UNRELEASED; urgency=low a cgi. * orphans: As a special case, the toplevel index page is never considered an orphaned page. + * inline: Display a message if the 'pages' parameter is missing, before + it just expanded to nothing. -- Joey Hess <joeyh@debian.org> Tue, 13 May 2008 12:30:18 -0400 |