Version Description
- Change settings page link
Download this release
Release Info
Developer | cgastrell |
Plugin | Crowdsignal Dashboard – Polls, Surveys & more |
Version | 2.2.5 |
Comparing to | |
See all releases |
Code changes from version 2.2.4 to 2.2.5
- polldaddy-org.php +1 -1
- polldaddy.php +3 -3
- readme.txt +4 -1
polldaddy-org.php
CHANGED
@@ -647,7 +647,7 @@ function polldaddy_login_warning() {
|
|
647 |
return;
|
648 |
}
|
649 |
|
650 |
-
echo '<div class="updated"><p><strong>' . sprintf( __( 'Warning! The Crowdsignal plugin must be linked to your Crowdsignal.com account. Please visit the <a href="%s">plugin settings page</a> to login.', 'polldaddy' ), admin_url( '
|
651 |
}
|
652 |
add_action( 'admin_notices', 'polldaddy_login_warning' );
|
653 |
|
647 |
return;
|
648 |
}
|
649 |
|
650 |
+
echo '<div class="updated"><p><strong>' . sprintf( __( 'Warning! The Crowdsignal plugin must be linked to your Crowdsignal.com account. Please visit the <a href="%s">plugin settings page</a> to login.', 'polldaddy' ), admin_url( 'options-general.php?page=pollsettings' ) ) . '</strong></p></div>';
|
651 |
}
|
652 |
add_action( 'admin_notices', 'polldaddy_login_warning' );
|
653 |
|
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.
|
9 |
*/
|
10 |
|
11 |
// To hardcode your Polldaddy PartnerGUID (API Key), add the (uncommented) line below with the PartnerGUID to your `wp-config.php`
|
@@ -1509,8 +1509,8 @@ class WP_Polldaddy {
|
|
1509 |
$polls_object = $polldaddy->get_polls_by_parent_id( ( $page - 1 ) * 10 + 1, $page * 10 );
|
1510 |
|
1511 |
$this->parse_errors( $polldaddy );
|
1512 |
-
|
1513 |
-
|
1514 |
$this->print_errors();
|
1515 |
$polls = & $polls_object->poll;
|
1516 |
$total_polls = 0;
|
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`
|
1509 |
$polls_object = $polldaddy->get_polls_by_parent_id( ( $page - 1 ) * 10 + 1, $page * 10 );
|
1510 |
|
1511 |
$this->parse_errors( $polldaddy );
|
1512 |
+
if ( in_array( 'API Key Not Found, 890', $polldaddy->errors ) )
|
1513 |
+
return false;
|
1514 |
$this->print_errors();
|
1515 |
$polls = & $polls_object->poll;
|
1516 |
$total_polls = 0;
|
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.
|
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.4 =
|
131 |
* Fix wrong argument provided to get_submenu_page
|
132 |
|
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 |
|
128 |
== Changelog ==
|
129 |
|
130 |
+
= 2.2.5 =
|
131 |
+
* Change settings page link
|
132 |
+
|
133 |
= 2.2.4 =
|
134 |
* Fix wrong argument provided to get_submenu_page
|
135 |
|