Remove leading "./" from include filenames as in PHP this defeats include_path.

This commit is contained in:
Preston L. Bannister 2002-05-16 21:53:18 +00:00
parent 90fa54c9d8
commit 1fdff888ce
9 changed files with 10 additions and 11 deletions

View 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');

View 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');

View 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'));

View 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/');

View 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');

View 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'));

View 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/');

View 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');

View 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');