Browse Source

- Sync with all branches (same run-tests.php everywhere

experimental/first_unicode_implementation
Jani Taskinen 18 years ago
parent
commit
8f245aaf94
  1. 5
      run-tests.php

5
run-tests.php

@ -59,6 +59,11 @@ NO_PROC_OPEN_ERROR;
exit;
}
// If __DIR__ is not defined, define it
if (!defined('__DIR__')) {
define('__DIR__', realpath(dirname(__FILE__)));
}
// If timezone is not set, use UTC.
if (ini_get('date.timezone') == '') {
date_default_timezone_set('UTC');

Loading…
Cancel
Save