diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-08-12 15:48:44 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-08-12 15:48:44 -0400 |
commit | 6432d15cb42b7b5b885b766d67f35ff2356f883c (patch) | |
tree | e2941295c8dd484b55c0ffca49eb1eb07492ff07 /IkiWiki | |
parent | 1e0a97c0aad07f74e9588d1a01f4f0044fce5294 (diff) | |
download | ikiwiki-6432d15cb42b7b5b885b766d67f35ff2356f883c.tar ikiwiki-6432d15cb42b7b5b885b766d67f35ff2356f883c.tar.gz |
fix a common case typo
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Plugin/poll.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/poll.pm b/IkiWiki/Plugin/poll.pm index b8d14ad3e..35717c85f 100644 --- a/IkiWiki/Plugin/poll.pm +++ b/IkiWiki/Plugin/poll.pm @@ -24,7 +24,7 @@ my %pagenum; sub preprocess (@) { #{{{ my %params=(open => "yes", total => "yes", percent => "yes", @_); - my $open=IkiWIki::yesno($params{open}); + my $open=IkiWiki::yesno($params{open}); my $showtotal=IkiWiki::yesno($params{total}); my $showpercent=IkiWiki::yesno($params{percent}); $pagenum{$params{page}}++; |