Hi Netcomics developers,
When I retrieve the comic Frank and Ernest I receive the following
Perl warning relating to the file 'lib/unitedmedia':
Use of uninitialized value in addition (+) at [my-path]/unitedmedia line 2=
0.
I believe that the function 'fae' is incorrect in the
'lib/unitedmedia' file. The last argument ($func) that is passed to
the function 'unitedmedia' should be 'fae', not 'franknernest'. The
following patch fixes the warning for me. Feel free to apply...
********** start of diff **********
--- unitedmedia.1.14 2005-04-21 13:54:08.000000000 +1000
+++ unitedmedia 2005-04-21 14:37:12.000000000 +1000
@@ -122,7 +122,7 @@
sub fae {
return unitedmedia(shift(@_), "Frank and Ernest",
"Bob Thaves","comics","franknernest",
- [725,400],[600,200],"franknernest");
+ [725,400],[600,200],"fae");
}
# Grand Avenue
********** end of diff **********
Regards,
Eddy Corbett.
|