ini_set('session.cache_limiter', ''
);
// Use httponly session cookies.
ini_set('session.cookie_httponly', '1'
);
} // Set sane locale settings, to ensure consistent string, dates, times and
// numbers handling.
setlocale(LC_ALL, 'C'
);
// Set appropriate configuration for multi-byte strings.
mb_internal_encoding('utf-8'
);
mb_language('uni'
);
// Indicate that code is operating in a test child site.
if (!
defined('DRUPAL_TEST_IN_CHILD_SITE'
)) { if ($test_prefix =
drupal_valid_test_ua()) { $test_db =
new TestDatabase($test_prefix);
// Only code that interfaces directly with tests should rely on this
// constant; e.g., the error/exception handler conditionally adds further
// error information into HTTP response headers that are consumed by
// the internal browser.
define('DRUPAL_TEST_IN_CHILD_SITE', TRUE
);