From: Don Armstrong Date: Mon, 22 Jan 2018 23:22:59 +0000 (-0800) Subject: utility routines are no longer supported in Text::Xslate X-Git-Url: https://git.donarmstrong.com/?p=debbugs.git;a=commitdiff_plain;h=c7d55ac58283a33852f1a6bd7cd73e1b1cf72974 utility routines are no longer supported in Text::Xslate --- diff --git a/Debbugs/CGI.pm b/Debbugs/CGI.pm index c39a6ca..4567305 100644 --- a/Debbugs/CGI.pm +++ b/Debbugs/CGI.pm @@ -820,23 +820,6 @@ sub option_form{ # we'll add extra comands here once I figure out what they # should be } - # add in a few utility routines - $variables->{output_select_options} = sub { - my ($options,$value) = @_; - my @options = @{$options}; - my $output = ''; - while (my ($o_value,$name) = splice @options,0,2) { - my $selected = ''; - if (defined $value and $o_value eq $value) { - $selected = ' selected'; - } - $output .= q(\n); - } - return $output; - }; - $variables->{make_list} = sub { make_list(@_); - }; # now at this point, we're ready to create the template return Debbugs::Text::fill_in_template(template=>$param{template}, (exists $param{language}?(language=>$param{language}):()),