Changeset 43571 for trunk/src/wp-admin/network/site-settings.php
- Timestamp:
- 08/17/2018 01:50:26 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/network/site-settings.php
r42343 r43571 66 66 'update' => 'updated', 67 67 'id' => $id, 68 ), 'site-settings.php' 68 ), 69 'site-settings.php' 69 70 ) 70 71 ); … … 139 140 } 140 141 if ( strpos( $option->option_value, "\n" ) !== false ) { 141 ?>142 ?> 142 143 <tr class="form-field"> 143 144 <th scope="row"><label for="<?php echo esc_attr( $option->option_name ); ?>"><?php echo ucwords( str_replace( '_', ' ', $option->option_name ) ); ?></label></th> 144 145 <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> 145 146 </tr> 146 <?php147 <?php 147 148 } else { 148 ?>149 ?> 149 150 <tr class="form-field"> 150 151 <th scope="row"><label for="<?php echo esc_attr( $option->option_name ); ?>"><?php echo esc_html( ucwords( str_replace( '_', ' ', $option->option_name ) ) ); ?></label></th> … … 155 156 <?php } ?> 156 157 </tr> 157 <?php158 <?php 158 159 } 159 160 } // End foreach
Note: See TracChangeset
for help on using the changeset viewer.