Make WordPress Core


Ignore:
Timestamp:
09/30/2011 05:18:35 PM (13 years ago)
Author:
markjaquith
Message:

Be more consistent with ERROR: messages. fixes #15887

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/ms-functions.php

    r18834 r18841  
    319319    // Check if the domain has been used already. We should return an error message.
    320320    if ( domain_exists($domain, $path, $site_id) )
    321         return __( 'Error: Site URL already taken.' );
     321        return __( '<strong>ERROR</strong>: Site URL already taken.' );
    322322
    323323    // Need to back up wpdb table names, and create a new wp_blogs entry for new blog.
     
    326326
    327327    if ( ! $blog_id = insert_blog($domain, $path, $site_id) )
    328         return __( 'Error: problem creating site entry.' );
     328        return __( '<strong>ERROR</strong>: problem creating site entry.' );
    329329
    330330    switch_to_blog($blog_id);
Note: See TracChangeset for help on using the changeset viewer.