@@ -, +, @@ improvements + fix a typo 'selelcted' > 'selected' - add use Modern::Perl; in reports/guided_reports.pl - remove a simple-quote string in guided_reports_start.tt --- .../prog/en/modules/reports/guided_reports_start.tt | 8 +++++--- reports/guided_reports.pl | 1 + 2 files changed, 6 insertions(+), 3 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt @@ -67,7 +67,7 @@ $(document).ready(function(){ { 'bSearchable': false, 'aTargets': [3, 4] } ], 'oLanguage': { - 'sZeroRecords': _('No matching reports found') + 'sZeroRecords': _("No matching reports found") } })); @@ -280,7 +280,9 @@ canned reports and writing custom SQL reports.

Saved results Saved SQL   -   + [% IF ( CAN_user_reports_create_reports ) %] +   + [% END %] @@ -808,7 +810,7 @@ Sub report: [% ELSE %] -
  • +
  • [% END %] [% IF (usecache) %]
  • --- a/reports/guided_reports.pl +++ a/reports/guided_reports.pl @@ -18,6 +18,7 @@ # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +use Modern::Perl; use CGI; use Text::CSV; use URI::Escape; --