summaryrefslogtreecommitdiff
path: root/ext/libxml
diff options
context:
space:
mode:
authorzoe slattery <zoe@php.net>2012-05-19 16:13:25 +0100
committerzoe slattery <zoe@php.net>2012-05-19 16:34:16 +0100
commit867447f4202f845654eb43e39a825b0efb812d36 (patch)
tree77d53b71f52f9d6d13a87914cafe30103c5c0ce5 /ext/libxml
parentc9331a3ef27018a93ce17d0ed87bce3c689e8eec (diff)
downloadphp-git-867447f4202f845654eb43e39a825b0efb812d36.tar.gz
Fix: 62067 Moved comments to FILE section
Diffstat (limited to 'ext/libxml')
-rw-r--r--ext/libxml/tests/bug61367-read.phpt5
-rw-r--r--ext/libxml/tests/bug61367-write.phpt2
2 files changed, 3 insertions, 4 deletions
diff --git a/ext/libxml/tests/bug61367-read.phpt b/ext/libxml/tests/bug61367-read.phpt
index 3deecfc50f..94da3d8481 100644
--- a/ext/libxml/tests/bug61367-read.phpt
+++ b/ext/libxml/tests/bug61367-read.phpt
@@ -4,11 +4,12 @@ Bug #61367: open_basedir bypass in libxml RSHUTDOWN: read test
<?php if(!extension_loaded('dom')) echo 'skip'; ?>
--INI--
open_basedir=.
-; Suppress spurious "Trying to get property of non-object" notices
error_reporting=E_ALL & ~E_NOTICE
--FILE--
<?php
-
+/*
+ * Note: Using error_reporting=E_ALL & ~E_NOTICE to supress "Trying to get property of non-object" notices.
+ */
class StreamExploiter {
public function stream_close ( ) {
$doc = new DOMDocument;
diff --git a/ext/libxml/tests/bug61367-write.phpt b/ext/libxml/tests/bug61367-write.phpt
index aeed688ff9..e18b07149a 100644
--- a/ext/libxml/tests/bug61367-write.phpt
+++ b/ext/libxml/tests/bug61367-write.phpt
@@ -4,8 +4,6 @@ Bug #61367: open_basedir bypass in libxml RSHUTDOWN: write test
<?php if(!extension_loaded('dom')) echo 'skip'; ?>
--INI--
open_basedir=.
-; Suppress spurious "Trying to get property of non-object" notices
-error_reporting=E_ALL & ~E_NOTICE
--FILE--
<?php