summaryrefslogtreecommitdiff
path: root/run-tests.php
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2005-06-20 07:26:46 +0000
committerfoobar <sniper@php.net>2005-06-20 07:26:46 +0000
commit9d14b408cf539cfb0eb69d73b9204cb95d31bf3f (patch)
tree03e83becefe5447c4b8914f2873eefea7c9e6a77 /run-tests.php
parenta6c73249796c847bf4b933711022569dd6c516b9 (diff)
downloadphp-git-9d14b408cf539cfb0eb69d73b9204cb95d31bf3f.tar.gz
fix typo
Diffstat (limited to 'run-tests.php')
-rwxr-xr-xrun-tests.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/run-tests.php b/run-tests.php
index c0a3b95909..3ec57e78c7 100755
--- a/run-tests.php
+++ b/run-tests.php
@@ -190,16 +190,16 @@ $php_info = `$php $info_params $info_file`;
define('TESTED_PHP_VERSION', `$php -r 'echo PHP_VERSION;'`);
// check for extensions that need special handling and regenerate
-$php_extenions = '<?php echo join(",",get_loaded_extensions()); ?>';
-save_text($info_file, $php_extenions);
-$php_extenions = explode(',',`$php $info_params $info_file`);
+$php_extensions = '<?php echo join(",",get_loaded_extensions()); ?>';
+save_text($info_file, $php_extensions);
+$php_extensions = explode(',',`$php $info_params $info_file`);
$info_params_ex = array(
'session' => array('session.auto_start=0'),
'zlib' => array('zlib.output_compression=Off'),
'xdebug' => array('xdebug.default_enable=0'),
);
foreach($info_params_ex as $ext => $ini_overwrites_ex) {
- if (in_array($ext, $php_extenions)) {
+ if (in_array($ext, $php_extensions)) {
$ini_overwrites = array_merge($ini_overwrites, $ini_overwrites_ex);
}
}