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?>
14--EXPECTF--
15Warning: XSLTProcessor::transformToXml(): Cannot create XPath expression (string contains both quote and double-quotes) in %s on line %d
16--CREDITS--
17Christian Weiske, cweiske@php.net
18PHP Testfest Berlin 2009-05-09
19