Skip Menu |

This queue is for tickets about the Net-EPP-Client CPAN distribution.

Report information
The Basics
Id: 15566
Status: resolved
Priority: 0/
Queue: Net-EPP-Client

People
Owner: Nobody in particular
Requestors: stuart.clark [...] Jahingo.com
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: (no value)
Fixed in: (no value)



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; };
On Sun Nov 06 11:02:02 2005, guest wrote: Show quoted text
> If you do not have XML::DOM installed, Net::EPP::Client will die > regardless of the value of the 'dom' parameter. Patch attached.