http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=1993
Vitor Fernandes <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] Patch complexity|--- |Medium patch --- Comment #7 from Vitor Fernandes <[email protected]> --- This patch seems to have a little error: my $base = C4::Context->config('intranetdir'); ... $command .= $base . "/misc/cronjobs/runreport.pl"; So the the $command will be ".../koha/intranet/misc/cronjobs/runreport.pl" which doesn't exist. I think this is the correct code: $command .= $base . "../bin/cronjobs/runreport.pl"; So the the $command will be ".../koha/intranet/../bin/cronjobs/runreport.pl", pointing exactly to existent run report script. Right? -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
