mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
Skip when Sablotron version is too old
This commit is contained in:
parent
7936a861ab
commit
aa4bf3607b
@ -1,7 +1,12 @@
|
||||
--TEST--
|
||||
Override Sablotron file handler
|
||||
--SKIPIF--
|
||||
<?php include("skipif.inc"); ?>
|
||||
<?php
|
||||
include("skipif.inc");
|
||||
if(!defined("XSLT_SABOPT_FILES_TO_HANDLER")) {
|
||||
die("skip Sab CVS > 20021031 needed");
|
||||
}
|
||||
?>
|
||||
--INI--
|
||||
magic_quotes_runtime=0
|
||||
--FILE--
|
||||
|
@ -1,7 +1,12 @@
|
||||
--TEST--
|
||||
Core dump when returning FALSE in a handler
|
||||
--SKIPIF--
|
||||
<?php include("skipif.inc"); ?>
|
||||
<?php
|
||||
include("skipif.inc");
|
||||
if(!defined("XSLT_SABOPT_FILES_TO_HANDLER")) {
|
||||
die("skip Sablotron CVS > 20021031 needed");
|
||||
}
|
||||
?>
|
||||
--INI--
|
||||
magic_quotes_runtime=0
|
||||
--FILE--
|
||||
|
Loading…
Reference in New Issue
Block a user