Changeset 55408
- Timestamp:
- 02/22/2023 08:54:05 PM (19 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/network/site-settings.php
r51475 r55408 147 147 ?> 148 148 <tr class="form-field"> 149 <th scope="row"><label for="<?php echo esc_attr( $option->option_name ); ?>" ><?php echo ucwords( str_replace( '_', ' ', $option->option_name )); ?></label></th>149 <th scope="row"><label for="<?php echo esc_attr( $option->option_name ); ?>" class="code"><?php echo esc_html( $option->option_name ); ?></label></th> 150 150 <td><textarea class="<?php echo $class; ?>" rows="5" cols="40" name="option[<?php echo esc_attr( $option->option_name ); ?>]" id="<?php echo esc_attr( $option->option_name ); ?>"<?php disabled( $disabled ); ?>><?php echo esc_textarea( $option->option_value ); ?></textarea></td> 151 151 </tr> … … 154 154 ?> 155 155 <tr class="form-field"> 156 <th scope="row"><label for="<?php echo esc_attr( $option->option_name ); ?>" ><?php echo esc_html( ucwords( str_replace( '_', ' ', $option->option_name ) )); ?></label></th>156 <th scope="row"><label for="<?php echo esc_attr( $option->option_name ); ?>" class="code"><?php echo esc_html( $option->option_name ); ?></label></th> 157 157 <?php if ( $is_main_site && in_array( $option->option_name, array( 'siteurl', 'home' ), true ) ) { ?> 158 158 <td><code><?php echo esc_html( $option->option_value ); ?></code></td>
Note: See TracChangeset
for help on using the changeset viewer.