sixd Sun, 19 Jul 2009 16:21:35 +0000 URL: http://svn.php.net/viewvc?view=revision&revision=284374
Changed paths: U php/php-src/branches/PHP_5_2/ext/oci8/tests/connect.inc Log: make it easier for maintainers to set un/pw in environments that don't pass shell variables Modified: php/php-src/branches/PHP_5_2/ext/oci8/tests/connect.inc =================================================================== --- php/php-src/branches/PHP_5_2/ext/oci8/tests/connect.inc 2009-07-19 16:08:44 UTC (rev 284373) +++ php/php-src/branches/PHP_5_2/ext/oci8/tests/connect.inc 2009-07-19 16:21:35 UTC (rev 284374) @@ -1,6 +1,10 @@ <?php -include "details.inc"; +if (file_exists("details_local.inc")) { + include("details_local.inc"); // this file is not part of the source distribution; make it your own local variant of details.inc +} else { + include "details.inc"; +} /* * You should have privileges to create tables in this schema
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php