summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/poll.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-07-12 12:01:08 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-07-12 12:01:22 -0400
commitd101269bde7eb2d3497b8fe9e6cc6e78aec4663c (patch)
tree8aefe69772ca1bacee06e8c530fd007e4b3da30e /IkiWiki/Plugin/poll.pm
parentd36361b01015da0338d3c0dc20625b5121ed94b2 (diff)
Move yesno function out of inline and into IkiWiki core, not exported.
Diffstat (limited to 'IkiWiki/Plugin/poll.pm')
-rw-r--r--IkiWiki/Plugin/poll.pm11
1 files changed, 3 insertions, 8 deletions
diff --git a/IkiWiki/Plugin/poll.pm b/IkiWiki/Plugin/poll.pm
index 6edf233b4..32cb5c48f 100644
--- a/IkiWiki/Plugin/poll.pm
+++ b/IkiWiki/Plugin/poll.pm
@@ -11,18 +11,13 @@ sub import { #{{{
hook(type => "sessioncgi", id => "poll", call => \&sessioncgi);
} # }}}
-sub yesno ($) { #{{{
- my $val=shift;
- return (defined $val && lc($val) eq "yes");
-} #}}}
-
my %pagenum;
sub preprocess (@) { #{{{
my %params=(open => "yes", total => "yes", percent => "yes", @_);
- my $open=yesno($params{open});
- my $showtotal=yesno($params{total});
- my $showpercent=yesno($params{percent});
+ my $open=IkiWIki::yesno($params{open});
+ my $showtotal=IkiWiki::yesno($params{total});
+ my $showpercent=IkiWiki::yesno($params{percent});
$pagenum{$params{page}}++;
my %choices;