Ryan wrote:
> Can't coerce GLOB to string in entersub at
> /usr/local/lib/perl5/site_perl/5.6.1/i686-linux/XML/LibXSLT.pm line 88.
> XML::LibXSLT::parse_stylesheet('XML::LibXSLT=HASH(0x8cc31e0)',
> 'XML::LibXML::Document=SCALAR(0x8c5d6f4)') called at
> /home/seeker/Omnibase/lib/Omnibase/UI/Web.pm line 93
>
>
>
>
>
> Line 88 --->  require XML::LibXSLT;
>
> Line 93 --->  my $xslt = new XML::LibXSLT;
>
> it is the most current version XML::LibXSLT
>
> and this is not being ran as a standalone script.

You can't run a module on its own. Somewhere there must
be a file that says

  use XML::LibXSLT;
  my $xslt = new XML::LibXSLT;
  my $sheet = parse_stylesheet_file('file');

or something like that. Unless you're entering the program
on the command line. What does your command line look like?

Rob




-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to