Changeset 417948
- Timestamp:
- 08/01/2011 02:39:36 PM (15 years ago)
- Location:
- rich-text-widget/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
rich-text-widget.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rich-text-widget/trunk/readme.txt
r409683 r417948 3 3 Tags: rte,tinymce,widget,rich editor,wysiwyg 4 4 Requires at least: 3.0 5 Tested up to: 3. 15 Tested up to: 3.2 6 6 Stable tag: trunk 7 7 … … 29 29 == Changelog == 30 30 31 = 1.0.3 = 32 * improving render 33 31 34 = 1.0.2 = 32 35 * debug -
rich-text-widget/trunk/rich-text-widget.php
r409683 r417948 4 4 Plugin URI: http://julienappert.com/realisations/plugin-rich-text-widget 5 5 Description: Create rich text widgets. 6 Version: 1.0. 26 Version: 1.0.3 7 7 Author: Julien Appert 8 8 Author URI: http://julienappert.com … … 30 30 $text = strlen($instance['text'])>0 ? esc_attr($instance['text']) : ''; 31 31 echo $before_widget; 32 echo $before_title.$title.$after_title;33 echo html_entity_decode($text);32 if(strlen($title)>0) echo $before_title.$title.$after_title; 33 echo '<div class="widget_richtext_content">'.html_entity_decode($text).'</div>'; 34 34 echo $after_widget; 35 35 }
Note: See TracChangeset
for help on using the changeset viewer.