[Koha-bugs] [Bug 1993] Task Scheduler Needs Re-write

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Tue Nov 27 12:02:08 CET 2012


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

Vitor Fernandes <vfernandes at keep.pt> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |vfernandes at keep.pt
   Patch complexity|---                         |Medium patch

--- Comment #7 from Vitor Fernandes <vfernandes at keep.pt> ---
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.


More information about the Koha-bugs mailing list