https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30642

Lucas Gass <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|Needs Signoff               |Failed QA
                 CC|                            |[email protected]

--- Comment #4 from Lucas Gass <[email protected]> ---
This will be very helpful! 

I do encounter a problem when testing with automatic_renewals.pl. They are
showing up as a "Manual" renewal type. 

Looking a Circulation.pm I see that my file name is
"/kohadevbox/koha/misc/cronjobs/automatic_renewals.pl" not
"automatic_renewals.pl".

If I switch this it works:
-my $renewal_type = $filename eq "automatic_renewals.pl" ? "Automatic" :
"Manual";
 +my $renewal_type = $filename =~ m/automatic_renewals.pl/ ? "Automatic" :
"Manual";

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://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/

Reply via email to