[dw-free] Make it play nice with perl 5.8 and 5.9.
[commit: http://hg.dwscoalition.org/dw-free/rev/48d25fbd3430]
Make it play nice with perl 5.8 and 5.9.
Thanks to rho (again) for spotting it and to Sophie for additional testing.
Files modified:
Make it play nice with perl 5.8 and 5.9.
Thanks to rho (again) for spotting it and to Sophie for additional testing.
Files modified:
- cgi-bin/DW/Shop/Engine.pm
-------------------------------------------------------------------------------- diff -r 749e61ba7fc1 -r 48d25fbd3430 cgi-bin/DW/Shop/Engine.pm --- a/cgi-bin/DW/Shop/Engine.pm Wed Apr 22 12:57:15 2009 +0000 +++ b/cgi-bin/DW/Shop/Engine.pm Wed Apr 22 13:07:47 2009 +0000 @@ -84,7 +84,7 @@ sub err_is_temporary { # this is a 'something bad has happened, consider this cart and transaction # to be dead' sort of thing sub fail_transaction { - die "Please implement $_[0]->fail_transaction.\n"; + die "Please implement $_[0]" . "->fail_transaction.\n"; } --------------------------------------------------------------------------------