PluginProbe
Insert Html Snippet / trunk
Insert Html Snippet vtrunk
1.4.6 trunk 1.0 1.0.1 1.1 1.1.1 1.2 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.3 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.4 1.4.1 1.4.2 1.4.3 All 27 releases
← All changes | widget.php +7 -2 1.2.3trunk View file →
@@ -71,9 +71,9 @@
71 71
72 72 <!-- <input class="widefat" id="<?php echo $this->get_field_id('message'); ?>" name="<?php echo $this->get_field_name('message'); ?>" type="text" value="<?php echo $message; ?>" />-->
73 73 <select name="<?php echo $this->get_field_name('message'); ?>">
74 74 <?php
75 - if( count($entries)>0 ) {
75 + if(!empty($entries)){ //if( count($entries)>0 )
76 76 $count=1;
77 77 $class = '';
78 78 foreach( $entries as $entry ) {
79 79 ?>
@@ -88,6 +88,11 @@
88 88 }
89 89
90 90
91 91 } // end class Xyz_Insert_Html_Widget
92 -add_action('widgets_init', create_function('', 'return register_widget("Xyz_Insert_Html_Widget");'));
92 +
93 +function xyz_ihs_add_snippet_widget(){
94 + register_widget("Xyz_Insert_Html_Widget");
95 +}
96 +add_action('widgets_init','xyz_ihs_add_snippet_widget');
97 +
93 98 ?>