Plugin Directory

Changeset 843612


Ignore:
Timestamp:
01/23/2014 08:07:06 AM (12 years ago)
Author:
minhlaobao
Message:

Fix media upload.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • admin-note/trunk/adminnote.php

    r843041 r843612  
    280280                    <label for="content">Content</label>
    281281                    <?php
    282                         $content = $note_info->text;
     282                        $content = stripslashes(htmlspecialchars_decode($note_info->text));
    283283                        $editor_id = 'content';
    284284                        wp_editor( $content, $editor_id );
     
    359359                        <label for="content">Content</label>
    360360                        <?php
    361                         $content = $note_info->text;
     361                        $content = stripslashes(htmlspecialchars_decode($note_info->text));
    362362                        $editor_id = 'content';
    363363                        wp_editor( $content, $editor_id );
Note: See TracChangeset for help on using the changeset viewer.