Crowdsignal Dashboard – Polls, Surveys & more - Version 2.2.6

Version Description

  • Address an issue with Jetpack + Grunion Contact form fighting for the same submenu slugs (#60)
Download this release

Release Info

Developer cgastrell
Plugin Icon 128x128 Crowdsignal Dashboard – Polls, Surveys & more
Version 2.2.6
Comparing to
See all releases

Code changes from version 2.2.5 to 2.2.6

Files changed (2) hide show
  1. polldaddy.php +2 -2
  2. readme.txt +4 -1
polldaddy.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: Create and manage Crowdsignal polls and ratings in WordPress
6
  * Author: Automattic, Inc.
7
  * Author URL: https://crowdsignal.com/
8
- * Version: 2.2.5
9
  */
10
 
11
  // To hardcode your Polldaddy PartnerGUID (API Key), add the (uncommented) line below with the PartnerGUID to your `wp-config.php`
@@ -187,7 +187,7 @@ class WP_Polldaddy {
187
  foreach( array( 'polls' => __( 'Polls', 'polldaddy' ), 'ratings' => __( 'Ratings', 'polldaddy' ) ) as $menu_slug => $page_title ) {
188
  $menu_title = $page_title;
189
 
190
- $hook = add_submenu_page( $slug, $menu_title, $menu_title, $capability, $menu_slug, $function, 99 );
191
  add_action( "load-$hook", array( &$this, 'management_page_load' ) );
192
  }
193
 
5
  * Description: Create and manage Crowdsignal polls and ratings in WordPress
6
  * Author: Automattic, Inc.
7
  * Author URL: https://crowdsignal.com/
8
+ * Version: 2.2.6
9
  */
10
 
11
  // To hardcode your Polldaddy PartnerGUID (API Key), add the (uncommented) line below with the PartnerGUID to your `wp-config.php`
187
  foreach( array( 'polls' => __( 'Polls', 'polldaddy' ), 'ratings' => __( 'Ratings', 'polldaddy' ) ) as $menu_slug => $page_title ) {
188
  $menu_title = $page_title;
189
 
190
+ $hook = add_submenu_page( $this->has_feedback_menu ? 'feedback' : $slug, $menu_title, $menu_title, $capability, $menu_slug, $function, 99 );
191
  add_action( "load-$hook", array( &$this, 'management_page_load' ) );
192
  }
193
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: crowdsignal, polls, poll, polldaddy, wppolls, vote, polling, surveys, rate
4
  Requires at least: 4.6
5
  Requires PHP: 5.6
6
  Tested up to: 5.7.1
7
- Stable tag: 2.2.5
8
 
9
  Create and manage Crowdsignal polls and ratings from within WordPress.
10
 
@@ -127,6 +127,9 @@ Bugfix release.
127
 
128
  == Changelog ==
129
 
 
 
 
130
  = 2.2.5 =
131
  * Change settings page link
132
 
4
  Requires at least: 4.6
5
  Requires PHP: 5.6
6
  Tested up to: 5.7.1
7
+ Stable tag: 2.2.6
8
 
9
  Create and manage Crowdsignal polls and ratings from within WordPress.
10
 
127
 
128
  == Changelog ==
129
 
130
+ = 2.2.6 =
131
+ * Address an issue with Jetpack + Grunion Contact form fighting for the same submenu slugs (#60)
132
+
133
  = 2.2.5 =
134
  * Change settings page link
135