Subject: | Startup fatal error |
If you do not have XML::DOM installed, Net::EPP::Client will die regardless of the value of the 'dom' parameter. Patch attached.
diff -BurN Net-EPP-Client-0.02/lib/Net/EPP/Client.pm Net-EPP-Client-0.02b/lib/Net/EPP/Client.pm
--- Net-EPP-Client-0.02/lib/Net/EPP/Client.pm 2005-03-07 17:17:07.000000000 +0000
+++ Net-EPP-Client-0.02b/lib/Net/EPP/Client.pm 2005-11-06 15:59:33.000000000 +0000
@@ -65,7 +65,7 @@
BEGIN {
our $XMLDOM = 0;
eval {
- use XML::DOM;
+ require XML::DOM;
$XMLDOM = 1;
};