From: Stig Bakken Date: Sun, 12 May 2002 07:08:25 +0000 (+0000) Subject: * exclude _lastmodified registry attrib from tests X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~109 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=201ec25f42af3107088652e6fc78f82ce6ff37e9;p=php * exclude _lastmodified registry attrib from tests --- diff --git a/pear/tests/pear_registry.phpt b/pear/tests/pear_registry.phpt index 143b2ee8af..214ecbfe79 100644 --- a/pear/tests/pear_registry.phpt +++ b/pear/tests/pear_registry.phpt @@ -50,6 +50,7 @@ function dumpall(&$reg) print $pkg["name"] . ":"; unset($pkg["name"]); foreach ($pkg as $k => $v) { + if ($k == '_lastmodified') continue; print " $k=\"$v\""; } print "\n";