Changeset 61651 for trunk/src/wp-admin/network/site-info.php
- Timestamp:
- 02/16/2026 05:01:33 PM (2 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/network/site-info.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/network/site-info.php
r60805 r61651 176 176 <tr class="form-field"> 177 177 <th scope="row"><?php _e( 'Site Address (URL)' ); ?></th> 178 <td>< ?php echo esc_url( $parsed_scheme . '://' . $details->domain . $details->path ); ?></td>178 <td><code><?php echo esc_url( $parsed_scheme . '://' . $details->domain . $details->path ); ?></code></td> 179 179 </tr> 180 180 <?php … … 184 184 <tr class="form-field form-required"> 185 185 <th scope="row"><label for="url"><?php _e( 'Site Address (URL)' ); ?></label></th> 186 <td><input name="blog[url]" type=" text" id="url" value="<?php echo $parsed_scheme . '://' . esc_attr( $details->domain ) . esc_attr( $details->path ); ?>" /></td>186 <td><input name="blog[url]" type="url" id="url" value="<?php echo $parsed_scheme . '://' . esc_attr( $details->domain ) . esc_attr( $details->path ); ?>" /></td> 187 187 </tr> 188 188 <?php endif; ?>
Note: See TracChangeset
for help on using the changeset viewer.