@@ -, +, @@ --- .../prog/en/modules/help/reports/guided_reports.tt | 2 +- reports/guided_reports.pl | 16 +++++++++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/guided_reports.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/guided_reports.tt @@ -62,7 +62,7 @@

Note that you can have more than one parameter in a given SQL

--- a/reports/guided_reports.pl +++ a/reports/guided_reports.pl @@ -420,7 +420,21 @@ elsif ($phase eq 'Run this report'){ for(my $i=0;$i<($#split/2);$i++) { my ($text,$authorised_value) = split /\|/,$split[$i*2+1]; my $input; - if ($authorised_value) { + if ($authorised_value eq "date") { + $input = qq( + Show Calendar + + ); + } + elsif ($authorised_value) { my $dbh=C4::Context->dbh; my @authorised_values; my %authorised_lib; --