Changeset 1320 in tests for trunk/includes/bootstrap.php
- Timestamp:
- 07/28/2013 08:48:25 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/bootstrap.php
r1300 r1320 40 40 $PHP_SELF = $GLOBALS['PHP_SELF'] = $_SERVER['PHP_SELF'] = '/index.php'; 41 41 42 $multisite = (int) ( defined( 'WP_TESTS_MULTISITE') && WP_TESTS_MULTISITE ); 42 if ( "1" == getenv( 'WP_TESTS_MULTISITE' ) || 43 ( defined( 'WP_TESTS_MULTISITE') && WP_TESTS_MULTISITE ) ) { 44 $multisite = true; 45 } else { 46 $multisite = false; 47 } 43 48 44 49 // Override the PHPMailer
Note: See TracChangeset
for help on using the changeset viewer.