Changeset 843612
- Timestamp:
- 01/23/2014 08:07:06 AM (12 years ago)
- File:
-
- 1 edited
-
admin-note/trunk/adminnote.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
admin-note/trunk/adminnote.php
r843041 r843612 280 280 <label for="content">Content</label> 281 281 <?php 282 $content = $note_info->text;282 $content = stripslashes(htmlspecialchars_decode($note_info->text)); 283 283 $editor_id = 'content'; 284 284 wp_editor( $content, $editor_id ); … … 359 359 <label for="content">Content</label> 360 360 <?php 361 $content = $note_info->text;361 $content = stripslashes(htmlspecialchars_decode($note_info->text)); 362 362 $editor_id = 'content'; 363 363 wp_editor( $content, $editor_id );
Note: See TracChangeset
for help on using the changeset viewer.