diff --git a/src/wp-admin/network/site-info.php b/src/wp-admin/network/site-info.php
index 61fea29..586d085 100644
a
|
b
|
$site_url_no_http = preg_replace( '#^http(s)?://#', '', get_blogaddress_by_id( $ |
129 | 129 | $title_site_url_linked = sprintf( __( 'Edit Site: %s' ), '<a href="' . get_blogaddress_by_id( $id ) . '">' . $site_url_no_http . '</a>' ); |
130 | 130 | $title = sprintf( __( 'Edit Site: %s' ), $site_url_no_http ); |
131 | 131 | |
| 132 | $dashboard = '<a href="' . get_admin_url( $id ) . '">' . __( '(Go to dashboard)' ) . '</a>'; |
| 133 | |
132 | 134 | $parent_file = 'sites.php'; |
133 | 135 | $submenu_file = 'sites.php'; |
134 | 136 | |
… |
… |
require( ABSPATH . 'wp-admin/admin-header.php' ); |
138 | 140 | |
139 | 141 | <div class="wrap"> |
140 | 142 | <h1 id="edit-site"><?php echo $title_site_url_linked; ?></h1> |
| 143 | <h3><?php echo $dashboard; ?></h3> |
141 | 144 | <h3 class="nav-tab-wrapper"> |
142 | 145 | <?php |
143 | 146 | $tabs = array( |
diff --git a/src/wp-admin/network/site-settings.php b/src/wp-admin/network/site-settings.php
index 31980ee..cd73167 100644
a
|
b
|
$site_url_no_http = preg_replace( '#^http(s)?://#', '', get_blogaddress_by_id( $ |
79 | 79 | $title_site_url_linked = sprintf( __( 'Edit Site: %s' ), '<a href="' . get_blogaddress_by_id( $id ) . '">' . $site_url_no_http . '</a>' ); |
80 | 80 | $title = sprintf( __( 'Edit Site: %s' ), $site_url_no_http ); |
81 | 81 | |
| 82 | $dashboard = '<a href="' . get_admin_url( $id ) . '">' . __( '(Go to dashboard)' ) . '</a>'; |
| 83 | |
82 | 84 | $parent_file = 'sites.php'; |
83 | 85 | $submenu_file = 'sites.php'; |
84 | 86 | |
… |
… |
require( ABSPATH . 'wp-admin/admin-header.php' ); |
88 | 90 | |
89 | 91 | <div class="wrap"> |
90 | 92 | <h1 id="edit-site"><?php echo $title_site_url_linked; ?></h1> |
| 93 | <h3><?php echo $dashboard; ?></h3> |
91 | 94 | <h3 class="nav-tab-wrapper"> |
92 | 95 | <?php |
93 | 96 | $tabs = array( |
diff --git a/src/wp-admin/network/site-themes.php b/src/wp-admin/network/site-themes.php
index 0042601..4ec648e 100644
a
|
b
|
$site_url_no_http = preg_replace( '#^http(s)?://#', '', get_blogaddress_by_id( $ |
133 | 133 | $title_site_url_linked = sprintf( __( 'Edit Site: %s' ), '<a href="' . get_blogaddress_by_id( $id ) . '">' . $site_url_no_http . '</a>' ); |
134 | 134 | $title = sprintf( __( 'Edit Site: %s' ), $site_url_no_http ); |
135 | 135 | |
| 136 | $dashboard = '<a href="' . get_admin_url( $id ) . '">' . __( '(Go to dashboard)' ) . '</a>'; |
| 137 | |
136 | 138 | $parent_file = 'sites.php'; |
137 | 139 | $submenu_file = 'sites.php'; |
138 | 140 | |
… |
… |
require( ABSPATH . 'wp-admin/admin-header.php' ); ?> |
140 | 142 | |
141 | 143 | <div class="wrap"> |
142 | 144 | <h1 id="edit-site"><?php echo $title_site_url_linked; ?></h1> |
| 145 | <h3><?php echo $dashboard; ?></h3> |
143 | 146 | <h3 class="nav-tab-wrapper"> |
144 | 147 | <?php |
145 | 148 | $tabs = array( |
diff --git a/src/wp-admin/network/site-users.php b/src/wp-admin/network/site-users.php
index f290565..700d323 100644
a
|
b
|
$site_url_no_http = preg_replace( '#^http(s)?://#', '', get_blogaddress_by_id( $ |
161 | 161 | $title_site_url_linked = sprintf( __( 'Edit Site: %s' ), '<a href="' . get_blogaddress_by_id( $id ) . '">' . $site_url_no_http . '</a>' ); |
162 | 162 | $title = sprintf( __( 'Edit Site: %s' ), $site_url_no_http ); |
163 | 163 | |
| 164 | $dashboard = '<a href="' . get_admin_url( $id ) . '">' . __( '(Go to dashboard)' ) . '</a>'; |
| 165 | |
164 | 166 | $parent_file = 'sites.php'; |
165 | 167 | $submenu_file = 'sites.php'; |
166 | 168 | |
… |
… |
var current_site_id = <?php echo $id; ?>; |
183 | 185 | |
184 | 186 | <div class="wrap"> |
185 | 187 | <h1 id="edit-site"><?php echo $title_site_url_linked; ?></h1> |
| 188 | <h3><?php echo $dashboard; ?></h3> |
186 | 189 | <h3 class="nav-tab-wrapper"> |
187 | 190 | <?php |
188 | 191 | $tabs = array( |