matts 2003/03/18 07:18:56
Modified: lib/Apache/AxKit/Language LibXSLT.pm Log: Fix for LibXSLTSupport.pm bug not returning a provider Revision Changes Path 1.20 +3 -1 xml-axkit/lib/Apache/AxKit/Language/LibXSLT.pm Index: LibXSLT.pm =================================================================== RCS file: /home/cvs/xml-axkit/lib/Apache/AxKit/Language/LibXSLT.pm,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- LibXSLT.pm 18 Feb 2003 22:37:22 -0000 1.19 +++ LibXSLT.pm 18 Mar 2003 15:18:56 -0000 1.20 @@ -55,6 +55,7 @@ my $r = shift; my $provider = Apache::AxKit::Provider->new_content_provider($r); add_depends($provider->key()); + return $provider; }; if (!$xml_doc && !$xmlstring) { @@ -99,6 +100,7 @@ my $r = shift; my $provider = Apache::AxKit::Provider->new_style_provider($r); add_depends($provider->key()); + return $provider; }; $stylesheet = XML::LibXSLT->parse_stylesheet($style_doc);