[Koha-bugs] [Bug 10031] New: runreport.pl has an error

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri Apr 12 09:18:51 CEST 2013


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10031

            Bug ID: 10031
           Summary: runreport.pl has an error
    Classification: Unclassified
 Change sponsored?: ---
           Product: Koha
           Version: 3.10
          Hardware: All
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P5 - low
         Component: Task Scheduler
          Assignee: gmcharlt at gmail.com
          Reporter: ketan at carvingit.com

The code that's hashed out is the current code. The lines below that are the
lines that should be present instead. A minor typographical error.

Following is the output of diff command showing the difference between the
original file and the update file - bin/cronjobs/runreport.pl

=================================================================

195,197c195,201
<     my $sql         => $report->{savedsql};
<     my $report_name => $report->{report_name};
<     my $type        => $report->{type};
---
>     #my $sql         => $report->{savedsql};
>     my $sql         = $report->{savedsql};
> #print $sql;
>     #my $report_name => $report->{report_name};
>     my $report_name = $report->{report_name};
>     #my $type        => $report->{type};
>     my $type        = $report->{type};

=================================================================

New to koha. Looking for info on submitting a patch myself.

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list