]> granicus.if.org Git - php/commitdiff
fix typo
authorfoobar <sniper@php.net>
Mon, 20 Jun 2005 07:26:46 +0000 (07:26 +0000)
committerfoobar <sniper@php.net>
Mon, 20 Jun 2005 07:26:46 +0000 (07:26 +0000)
run-tests.php

index c0a3b959096aca7b7f32e9b308cabf300c38e5fc..3ec57e78c750d00f24ad9a83d2b786c011e78f42 100755 (executable)
@@ -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);
        }
 }