]> granicus.if.org Git - php/commitdiff
Remove leading "./" from include filenames as in PHP this defeats include_path.
authorPreston L. Bannister <pbannister@php.net>
Thu, 16 May 2002 21:53:18 +0000 (21:53 +0000)
committerPreston L. Bannister <pbannister@php.net>
Thu, 16 May 2002 21:53:18 +0000 (21:53 +0000)
ext/standard/tests/aggregation/aggregate.phpt
ext/standard/tests/aggregation/aggregate_methods.phpt
ext/standard/tests/aggregation/aggregate_methods_by_list.phpt
ext/standard/tests/aggregation/aggregate_methods_by_regexp.phpt
ext/standard/tests/aggregation/aggregate_properties.phpt
ext/standard/tests/aggregation/aggregate_properties_by_list.phpt
ext/standard/tests/aggregation/aggregate_properties_by_regexp.phpt
ext/standard/tests/aggregation/aggregation_info.phpt
ext/standard/tests/aggregation/deaggregate.phpt

index 161afcda68c70248718c2d78960775338adadacf..46aa9133b6feddde4608afa08d3d6ff37f57d1c6 100644 (file)
@@ -1,10 +1,9 @@
 --TEST--
 aggregating everything
---POST--
---GET--
 --FILE--
 <?php
-include "./ext/standard/tests/aggregation/aggregate.lib";
+
+include "ext/standard/tests/aggregation/aggregate.lib";
 
 $obj = new simple();
 aggregate($obj, 'helper');
index 523d5c72ee96e4a68d412dee705c679d6287a24f..b612881c59319420fde4ac6586c4b16986b8352b 100644 (file)
@@ -4,7 +4,7 @@ aggregating all methods
 --GET--
 --FILE--
 <?php
-include "./ext/standard/tests/aggregation/aggregate.lib";
+include "ext/standard/tests/aggregation/aggregate.lib";
 
 $obj = new simple();
 aggregate_methods($obj, 'mixin');
index 192c43856534c7438832e02cf74ea7c8db91e8a0..312a57d1b2710e443c0872719101a6fad30ee350 100644 (file)
@@ -4,7 +4,7 @@ aggregating methods specified in the list
 --GET--
 --FILE--
 <?php
-include "./ext/standard/tests/aggregation/aggregate.lib";
+include "ext/standard/tests/aggregation/aggregate.lib";
 
 $obj = new simple();
 aggregate_methods_by_list($obj, 'helper', array('just_another_method'));
index a9fbe6a4acab31e1d3febf508c99bd816f869fec..6525e50cff9deb9a265b15311bbb219e5f5032d9 100644 (file)
@@ -4,7 +4,7 @@ aggregating methods matching regular expression
 --GET--
 --FILE--
 <?php
-include "./ext/standard/tests/aggregation/aggregate.lib";
+include "ext/standard/tests/aggregation/aggregate.lib";
 
 $obj = new simple();
 aggregate_methods_by_regexp($obj, 'helper', '/^do/');
index cb7562bb6f2d56db94a7ca1234d846b9b71934ac..2a976c71a77cfb51f5d782db55b98906fd31bdb3 100644 (file)
@@ -4,7 +4,7 @@ aggregating all default properties
 --GET--
 --FILE--
 <?php
-include "./ext/standard/tests/aggregation/aggregate.lib";
+include "ext/standard/tests/aggregation/aggregate.lib";
 
 $obj = new simple();
 aggregate_properties($obj, 'mixin');
index ae1def93492fea2d12bd3ea79b5301b8cca74093..fa12d36bcb47b29820d60549feb98a984aac5413 100644 (file)
@@ -4,7 +4,7 @@ aggregating default properties specified in the list
 --GET--
 --FILE--
 <?php
-include "./ext/standard/tests/aggregation/aggregate.lib";
+include "ext/standard/tests/aggregation/aggregate.lib";
 
 $obj = new simple();
 aggregate_properties_by_list($obj, 'helper', array('my_prop', 'our_prop'));
index 0f4d52f645d93c1287997cb4c66d054018a60526..6c1606505a917601dc059fb7c4799d14afbc0965 100644 (file)
@@ -4,7 +4,7 @@ aggregating default properties matching regular expression
 --GET--
 --FILE--
 <?php
-include "./ext/standard/tests/aggregation/aggregate.lib";
+include "ext/standard/tests/aggregation/aggregate.lib";
 
 $obj = new simple();
 aggregate_properties_by_regexp($obj, 'helper', '/^my/');
index cb2d9b8bb7278dacb3265f4c47c008a6c48aa089..8dd943cbccade37564cb1ece5ec7a9983feabb5c 100644 (file)
@@ -4,7 +4,7 @@ retrieving aggregation info
 --GET--
 --FILE--
 <?php
-include "./ext/standard/tests/aggregation/aggregate.lib";
+include "ext/standard/tests/aggregation/aggregate.lib";
 
 $obj = new simple();
 aggregate($obj, 'mixin');
index f7fc2ad67dbb97800c2b0b83a5f040cdcce532cb..5c551d75bd7fc671d5968489fef938df664b83d6 100644 (file)
@@ -4,7 +4,7 @@ deaggreating
 --GET--
 --FILE--
 <?php
-include "./ext/standard/tests/aggregation/aggregate.lib";
+include "ext/standard/tests/aggregation/aggregate.lib";
 
 $obj = new simple();
 aggregate($obj, 'helper');