Changeset 18841 for trunk/wp-includes/ms-functions.php
- Timestamp:
- 09/30/2011 05:18:35 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/ms-functions.php
r18834 r18841 319 319 // Check if the domain has been used already. We should return an error message. 320 320 if ( domain_exists($domain, $path, $site_id) ) 321 return __( ' Error: Site URL already taken.' );321 return __( '<strong>ERROR</strong>: Site URL already taken.' ); 322 322 323 323 // Need to back up wpdb table names, and create a new wp_blogs entry for new blog. … … 326 326 327 327 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.' ); 329 329 330 330 switch_to_blog($blog_id);
Note: See TracChangeset
for help on using the changeset viewer.