1--TEST-- 2Check xsltprocessor::setparameter error handling with both single and double quotes 3--DESCRIPTION-- 4Memleak: http://bugs.php.net/bug.php?id=48221 5--EXTENSIONS-- 6xsl 7--FILE-- 8<?php 9include __DIR__ .'/prepare.inc'; 10$proc->importStylesheet($xsl); 11$proc->setParameter('', '', '"\''); 12$proc->transformToXml($dom); 13?> 14Done 15--EXPECT-- 16Done 17--CREDITS-- 18Christian Weiske, cweiske@php.net 19PHP Testfest Berlin 2009-05-09 20