Plugin Directory

Changeset 790224


Ignore:
Timestamp:
10/19/2013 01:00:42 AM (12 years ago)
Author:
bjorsq
Message:

swapped out html_entity_decode for format_to_edit filter

File:
1 edited

Legend:

Unmodified
Added
Removed
  • rich-text-excerpts/trunk/rich-text-excerpts.php

    r788966 r790224  
    191191        );
    192192        /* "echo" the editor */
    193         wp_editor(html_entity_decode($excerpt), 'excerpt', $options );
     193        $excerpt = apply_filters( 'format_to_edit', $excerpt );
     194        wp_editor($excerpt, 'excerpt', $options );
    194195        if (!$plugin_options['metabox']['use']) {
    195196            /* finish wrapping */
Note: See TracChangeset for help on using the changeset viewer.