Changeset 1031 in tests
- Timestamp:
- 09/20/2012 10:30:29 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
bin/install.php (modified) (2 diffs)
-
bootstrap.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bin/install.php
r945 r1031 39 39 $wpdb->select( DB_NAME, $wpdb->dbh ); 40 40 41 echo "Installing …" . PHP_EOL;41 echo "Installing..." . PHP_EOL; 42 42 43 43 foreach ( $wpdb->tables() as $table => $prefixed_table ) { … … 56 56 57 57 if ( $multisite ) { 58 echo "Installing network …" . PHP_EOL;58 echo "Installing network..." . PHP_EOL; 59 59 60 60 define( 'WP_INSTALLING_NETWORK', true ); -
trunk/bootstrap.php
r1023 r1031 46 46 47 47 if ( $multisite ) { 48 echo "Running as multisite …" . PHP_EOL;48 echo "Running as multisite..." . PHP_EOL; 49 49 define( 'MULTISITE', true ); 50 50 define( 'SUBDOMAIN_INSTALL', false ); … … 55 55 $GLOBALS['base'] = '/'; 56 56 } else { 57 echo "Running as single site …To run multisite, use -c multisite.xml" . PHP_EOL;57 echo "Running as single site... To run multisite, use -c multisite.xml" . PHP_EOL; 58 58 } 59 59 unset( $multisite ); … … 123 123 } 124 124 if ( $ajax_message ) 125 echo "Not running ajax tests …To execute these, use --group ajax." . PHP_EOL;125 echo "Not running ajax tests... To execute these, use --group ajax." . PHP_EOL; 126 126 } 127 127 }
Note: See TracChangeset
for help on using the changeset viewer.