Make WordPress Core

Changeset 1031 in tests


Ignore:
Timestamp:
09/20/2012 10:30:29 PM (14 years ago)
Author:
scribu
Message:

Replace literal ellipsis with three dots. fixes #129

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/bin/install.php

    r945 r1031  
    3939$wpdb->select( DB_NAME, $wpdb->dbh );
    4040
    41 echo "Installing" . PHP_EOL;
     41echo "Installing..." . PHP_EOL;
    4242
    4343foreach ( $wpdb->tables() as $table => $prefixed_table ) {
     
    5656
    5757if ( $multisite ) {
    58         echo "Installing network" . PHP_EOL;
     58        echo "Installing network..." . PHP_EOL;
    5959
    6060        define( 'WP_INSTALLING_NETWORK', true );
  • trunk/bootstrap.php

    r1023 r1031  
    4646
    4747if ( $multisite ) {
    48         echo "Running as multisite" . PHP_EOL;
     48        echo "Running as multisite..." . PHP_EOL;
    4949        define( 'MULTISITE', true );
    5050        define( 'SUBDOMAIN_INSTALL', false );
     
    5555        $GLOBALS['base'] = '/';
    5656} 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;
    5858}
    5959unset( $multisite );
     
    123123                }
    124124                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;
    126126    }
    127127}
Note: See TracChangeset for help on using the changeset viewer.