YOP Poll - Version 1.3

Version Description

  • Fixed bug that was causing widgets text not to display
Download this release

Release Info

Developer yourownprogrammer
Plugin Icon 128x128 YOP Poll
Version 1.3
Comparing to
See all releases

Code changes from version 1.2 to 1.3

Files changed (3) hide show
  1. inc/public-admin.php +1 -1
  2. readme.txt +8 -1
  3. yop_poll.php +3 -3
inc/public-admin.php CHANGED
@@ -8,7 +8,7 @@
8
  }
9
 
10
  public function do_shortcode( $content ) {
11
- do_shortcode( $content );
12
  }
13
 
14
  public function public_loader() {
8
  }
9
 
10
  public function do_shortcode( $content ) {
11
+ return do_shortcode( $content );
12
  }
13
 
14
  public function public_loader() {
readme.txt CHANGED
@@ -136,9 +136,16 @@ This plugin was especially designed for flexibility and it is very easy to use.
136
 
137
  == Changelog ==
138
 
 
 
 
 
 
 
 
 
139
  = 1.1 =
140
  * Fixed call_user_func_array() bug
141
- * Fixed do_shortcode() with missing argument
142
 
143
 
144
 
136
 
137
  == Changelog ==
138
 
139
+
140
+
141
+ = 1.3 =
142
+ * Fixed bug that was causing widgets text not to display
143
+
144
+ = 1.2 =
145
+ * Fixed do_shortcode() with missing argument
146
+
147
  = 1.1 =
148
  * Fixed call_user_func_array() bug
 
149
 
150
 
151
 
yop_poll.php CHANGED
@@ -5,10 +5,10 @@
5
  Description: Use a full option polling functionality to get the answers you need. YOP Poll is the perfect, easy to use plugin for your WordPress website.
6
  Author: yourownprogrammer
7
  Author URL: http://www.yourownprogrammer.com
8
- Version: 1.2
9
  */
10
  define( 'YOP_POLL_WP_VERSION', '3.4.2' );
11
- define( 'YOP_POLL_VERSION', '1.2' );
12
  define( 'YOP_POLL_PATH', plugin_dir_path( __FILE__ ) );
13
  define( 'YOP_POLL_URL', plugins_url( '', __FILE__ ) );
14
  define( 'YOP_POLL_PLUGIN_FILE', plugin_basename( __FILE__ ) );
@@ -27,7 +27,7 @@
27
 
28
  #Yop Poll Tables Name
29
  global $wpdb;
30
- $wpdb->yop_poll_version = "1.0";
31
  $wpdb->yop_polls = $wpdb->prefix . 'yop_polls';
32
  $wpdb->yop_poll_answers = $wpdb->prefix . 'yop_poll_answers';
33
  $wpdb->yop_poll_templates = $wpdb->prefix . 'yop_poll_templates';
5
  Description: Use a full option polling functionality to get the answers you need. YOP Poll is the perfect, easy to use plugin for your WordPress website.
6
  Author: yourownprogrammer
7
  Author URL: http://www.yourownprogrammer.com
8
+ Version: 1.3
9
  */
10
  define( 'YOP_POLL_WP_VERSION', '3.4.2' );
11
+ define( 'YOP_POLL_VERSION', '1.3' );
12
  define( 'YOP_POLL_PATH', plugin_dir_path( __FILE__ ) );
13
  define( 'YOP_POLL_URL', plugins_url( '', __FILE__ ) );
14
  define( 'YOP_POLL_PLUGIN_FILE', plugin_basename( __FILE__ ) );
27
 
28
  #Yop Poll Tables Name
29
  global $wpdb;
30
+ $wpdb->yop_poll_version = "1.3";
31
  $wpdb->yop_polls = $wpdb->prefix . 'yop_polls';
32
  $wpdb->yop_poll_answers = $wpdb->prefix . 'yop_poll_answers';
33
  $wpdb->yop_poll_templates = $wpdb->prefix . 'yop_poll_templates';