summaryrefslogtreecommitdiff
path: root/ext/pdo/tests/pdo_021.phpt
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2005-10-03 15:06:27 +0000
committerMarcus Boerger <helly@php.net>2005-10-03 15:06:27 +0000
commit0a2e6f723e79d21ae4b5b261bb140fc4c8655ce1 (patch)
tree4b64defb05c38e6b1a5175f78f9a2e30b0f59f80 /ext/pdo/tests/pdo_021.phpt
parent8a5bd01a442cd36e5beb088deafb24463eb4744c (diff)
downloadphp-git-0a2e6f723e79d21ae4b5b261bb140fc4c8655ce1.tar.gz
- MFH change require to require_once
Diffstat (limited to 'ext/pdo/tests/pdo_021.phpt')
-rw-r--r--ext/pdo/tests/pdo_021.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo/tests/pdo_021.phpt b/ext/pdo/tests/pdo_021.phpt
index 1728000286..104c3394d0 100644
--- a/ext/pdo/tests/pdo_021.phpt
+++ b/ext/pdo/tests/pdo_021.phpt
@@ -11,7 +11,7 @@ PDOTest::skip();
--FILE--
<?php
if (getenv('REDIR_TEST_DIR') === false) putenv('REDIR_TEST_DIR='.dirname(__FILE__) . '/../../pdo/tests/');
-require getenv('REDIR_TEST_DIR') . 'pdo_test.inc';
+require_once getenv('REDIR_TEST_DIR') . 'pdo_test.inc';
$db = PDOTest::factory();
$db->exec('CREATE TABLE test(id INT NOT NULL PRIMARY KEY, val VARCHAR(10), val2 VARCHAR(16))');