#14242 closed defect (bug) (fixed)
WordPress MS - wp-admin/ms-sites.php line 200 missing echo
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | 3.0.1 | Priority: | normal |
Severity: | normal | Version: | |
Component: | Multisite | Keywords: | |
Focuses: | Cc: |
Description
in the file wp-admin/ms-sites.php on line 200 where it outputs the contents of a textarea field it is missing the echo (or print) before the function call wp_htmledit_pre( $option->option_value ).
<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 wp_htmledit_pre( $option->option_value ) ?></textarea></td>
Change History (3)
Note: See
TracTickets for help on using
tickets.
(In [15379]) Add missing echo. props PhillKenoyer, fixes #14242 for trunk.