http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7583
Jonathan Druart <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Passed QA --- Comment #16 from Jonathan Druart <[email protected]> --- (In reply to comment #13) > Epic fail: > > syntax error at acqui/parcel.pl line 84, near ");" > Global symbol "$datereceived" requires explicit package name at > acqui/parcel.pl line 85. > Global symbol "$datereceived" requires explicit package name at > acqui/parcel.pl line 85. Outch sorry ! A parenthesis was missing after the conflict, I solved it like: -my $datereceived = ($op eq ('new' or 'search' ) +my $datereceived = ( $op eq ('new' or 'search' ) ) -- You are receiving this mail because: 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/
