Changeset 14347 for trunk/wp-admin/network.php
- Timestamp:
- 05/02/2010 10:53:59 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/network.php
r14070 r14347 93 93 94 94 if ( get_option( 'siteurl' ) != get_option( 'home' ) ) { 95 echo '<div class="error"><p><strong>' . __('Error:') . '</strong> ' . sprintf( __( 'Your <strong>WordPress address</strong> must match your <strong>Site address</strong> before creating a Network. See <a href="%s">General Settings</a>.' ), esc_url( admin_url( 'options-general.php' )) ) . '</strong></p></div>';95 echo '<div class="error"><p><strong>' . __('Error:') . '</strong> ' . sprintf( __( 'Your <strong>WordPress address</strong> must match your <strong>Site address</strong> before creating a Network. See <a href="%s">General Settings</a>.' ), admin_url( 'options-general.php' ) ) . '</strong></p></div>'; 96 96 include ('./admin-footer.php' ); 97 97 die(); … … 114 114 else 115 115 echo '<p>' . sprintf( __( 'You cannot use port numbers such as <code>%s</code>.' ), $has_ports ) . '</p>'; 116 echo '<a href="' . esc_url( admin_url()) . '">' . __( 'Return to Dashboard' ) . '</a>';116 echo '<a href="' . admin_url() . '">' . __( 'Return to Dashboard' ) . '</a>'; 117 117 include( './admin-footer.php' ); 118 118 die(); … … 334 334 </ol> 335 335 <?php if ( !is_multisite() ) { ?> 336 <p><?php printf( __( 'Once you complete these steps, your network is enabled and configured.') ); ?> <a href="<?php echo esc_url( admin_url()); ?>"><?php _e( 'Return to Dashboard' ); ?></a></p>336 <p><?php printf( __( 'Once you complete these steps, your network is enabled and configured.') ); ?> <a href="<?php echo admin_url(); ?>"><?php _e( 'Return to Dashboard' ); ?></a></p> 337 337 <?php 338 338 }
Note: See TracChangeset
for help on using the changeset viewer.