Changeset 18129
- Timestamp:
- 06/03/2011 03:35:45 PM (13 years ago)
- Location:
- trunk/wp-admin/network
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/network/site-info.php
r17144 r18129 79 79 } 80 80 81 $title = sprintf( __('Edit Site: %s'), get_blogaddress_by_id($id)); 81 $site_url_no_http = preg_replace( '#^http(s)?://#', '', get_blogaddress_by_id( $id ) ); 82 $title_site_url_linked = sprintf( __('Edit Site: <a href="%1$s">%2$s</a>'), get_blogaddress_by_id( $id ), $site_url_no_http ); 83 $title = sprintf( __('Edit Site: %s'), $site_url_no_http ); 84 82 85 $parent_file = 'sites.php'; 83 86 $submenu_file = 'sites.php'; … … 89 92 <div class="wrap"> 90 93 <?php screen_icon('ms-admin'); ?> 91 <h2 id="edit-site"><?php echo $title ?></h2>94 <h2 id="edit-site"><?php echo $title_site_url_linked ?></h2> 92 95 <h3 class="nav-tab-wrapper"> 93 96 <?php -
trunk/wp-admin/network/site-settings.php
r17144 r18129 69 69 } 70 70 71 $title = sprintf( __('Edit Site: %s'), get_blogaddress_by_id($id)); 71 $site_url_no_http = preg_replace( '#^http(s)?://#', '', get_blogaddress_by_id( $id ) ); 72 $title_site_url_linked = sprintf( __('Edit Site: <a href="%1$s">%2$s</a>'), get_blogaddress_by_id( $id ), $site_url_no_http ); 73 $title = sprintf( __('Edit Site: %s'), $site_url_no_http ); 74 72 75 $parent_file = 'sites.php'; 73 76 $submenu_file = 'sites.php'; … … 79 82 <div class="wrap"> 80 83 <?php screen_icon('ms-admin'); ?> 81 <h2 id="edit-site"><?php echo $title ?></h2>84 <h2 id="edit-site"><?php echo $title_site_url_linked ?></h2> 82 85 <h3 class="nav-tab-wrapper"> 83 86 <?php -
trunk/wp-admin/network/site-themes.php
r17322 r18129 125 125 add_screen_option( 'per_page', array( 'label' => _x( 'Themes', 'themes per page (screen options)' ) ) ); 126 126 127 $title = sprintf( __('Edit Site: %s'), get_blogaddress_by_id($id)); 127 $site_url_no_http = preg_replace( '#^http(s)?://#', '', get_blogaddress_by_id( $id ) ); 128 $title_site_url_linked = sprintf( __('Edit Site: <a href="%1$s">%2$s</a>'), get_blogaddress_by_id( $id ), $site_url_no_http ); 129 $title = sprintf( __('Edit Site: %s'), $site_url_no_http ); 130 128 131 $parent_file = 'sites.php'; 129 132 $submenu_file = 'sites.php'; … … 133 136 <div class="wrap"> 134 137 <?php screen_icon('ms-admin'); ?> 135 <h2 id="edit-site"><?php echo $title ?></h2>138 <h2 id="edit-site"><?php echo $title_site_url_linked ?></h2> 136 139 <h3 class="nav-tab-wrapper"> 137 140 <?php -
trunk/wp-admin/network/site-users.php
r18010 r18129 158 158 add_screen_option( 'per_page', array( 'label' => _x( 'Users', 'users per page (screen options)' ) ) ); 159 159 160 $title = sprintf( __('Edit Site: %s'), get_blogaddress_by_id($id)); 160 $site_url_no_http = preg_replace( '#^http(s)?://#', '', get_blogaddress_by_id( $id ) ); 161 $title_site_url_linked = sprintf( __('Edit Site: <a href="%1$s">%2$s</a>'), get_blogaddress_by_id( $id ), $site_url_no_http ); 162 $title = sprintf( __('Edit Site: %s'), $site_url_no_http ); 163 161 164 $parent_file = 'sites.php'; 162 165 $submenu_file = 'sites.php'; … … 166 169 <div class="wrap"> 167 170 <?php screen_icon('ms-admin'); ?> 168 <h2 id="edit-site"><?php echo $title ?></h2>171 <h2 id="edit-site"><?php echo $title_site_url_linked ?></h2> 169 172 <h3 class="nav-tab-wrapper"> 170 173 <?php
Note: See TracChangeset
for help on using the changeset viewer.