From:             [EMAIL PROTECTED]
Operating system: Windows 2000 SP1
PHP version:      4.2.3
PHP Bug Type:     XSLT related
Bug description:  Bad return with xslt_process

Hi,

I'm using xslt_process like that :

$xslbot=xslt_create();
if (xslt_process($xslbot,"input.xml","input.xsl","ouput.xml"))
{    
  echo "Ca marche";
}
else
{
  echo "Une erreur est survenue durant le traitement XSL...\n";   
  echo "\tErreur numéro : " . xslt_errno($xslbot) . "\n";   
  echo "\tMessage d'erreur : " . xslt_error($xslbot) . "\n"; 
  exit();
}
xslt_free ( $xslbot) ;

the 2 files xml xsl work well when you open them in IE.
But the output file contains the xsl file content and non the both
result.

I try to introduce an error in the 2 input files, the errors are
detected.

-- 
Edit bug report at http://bugs.php.net/?id=20722&edit=1
-- 
Try a CVS snapshot:         http://bugs.php.net/fix.php?id=20722&r=trysnapshot
Fixed in CVS:               http://bugs.php.net/fix.php?id=20722&r=fixedcvs
Fixed in release:           http://bugs.php.net/fix.php?id=20722&r=alreadyfixed
Need backtrace:             http://bugs.php.net/fix.php?id=20722&r=needtrace
Try newer version:          http://bugs.php.net/fix.php?id=20722&r=oldversion
Not developer issue:        http://bugs.php.net/fix.php?id=20722&r=support
Expected behavior:          http://bugs.php.net/fix.php?id=20722&r=notwrong
Not enough info:            http://bugs.php.net/fix.php?id=20722&r=notenoughinfo
Submitted twice:            http://bugs.php.net/fix.php?id=20722&r=submittedtwice
register_globals:           http://bugs.php.net/fix.php?id=20722&r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=20722&r=php3
Daylight Savings:           http://bugs.php.net/fix.php?id=20722&r=dst
IIS Stability:              http://bugs.php.net/fix.php?id=20722&r=isapi

Reply via email to