Version Description
- fix message display
Download this release
Release Info
Developer | kucaahbe |
Plugin | Poll, Survey, Quiz, Slideshow, Form, Story & Landing Page |
Version | 19.6.28 |
Comparing to | |
See all releases |
Code changes from version 19.6.27 to 19.6.28
- admin/message-handler.php +1 -1
- opinionstage-polls.php +1 -1
- plugin.php +2 -2
- readme.txt +3 -1
admin/message-handler.php
CHANGED
@@ -34,7 +34,7 @@ function opinionstage_message_api_call($last_activity_time){
|
|
34 |
$result = json_decode($response);
|
35 |
update_option('oswp_message_last_call_time', time());
|
36 |
// save if message is available
|
37 |
-
if(isset($result->message) &&
|
38 |
update_option('oswp_message_title', $result->message->title);
|
39 |
update_option('oswp_message_content', $result->message->content);
|
40 |
}
|
34 |
$result = json_decode($response);
|
35 |
update_option('oswp_message_last_call_time', time());
|
36 |
// save if message is available
|
37 |
+
if( isset($result->message) && isset($result->message->title) && isset($result->message->content) ){
|
38 |
update_option('oswp_message_title', $result->message->title);
|
39 |
update_option('oswp_message_content', $result->message->content);
|
40 |
}
|
opinionstage-polls.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Poll, Survey, Form & Quiz Maker by OpinionStage (Deprecated)
|
4 |
Plugin URI: https://www.opinionstage.com
|
5 |
Description: Add a highly engaging poll, survey, quiz or contact form builder to your site. You can add the poll, survey, quiz or form to any post/page or to the sidebar.
|
6 |
-
Version: 19.6.
|
7 |
Author: OpinionStage.com
|
8 |
Author URI: https://www.opinionstage.com
|
9 |
Text Domain: social-polls-by-opinionstage
|
3 |
Plugin Name: Poll, Survey, Form & Quiz Maker by OpinionStage (Deprecated)
|
4 |
Plugin URI: https://www.opinionstage.com
|
5 |
Description: Add a highly engaging poll, survey, quiz or contact form builder to your site. You can add the poll, survey, quiz or form to any post/page or to the sidebar.
|
6 |
+
Version: 19.6.28
|
7 |
Author: OpinionStage.com
|
8 |
Author URI: https://www.opinionstage.com
|
9 |
Text Domain: social-polls-by-opinionstage
|
plugin.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Poll, Survey, Form & Quiz Maker by OpinionStage
|
4 |
Plugin URI: https://www.opinionstage.com
|
5 |
Description: Add a highly engaging poll, survey, quiz or contact form builder to your site. You can add the poll, survey, quiz or form to any post/page or to the sidebar.
|
6 |
-
Version: 19.6.
|
7 |
Author: OpinionStage.com
|
8 |
Author URI: https://www.opinionstage.com
|
9 |
Text Domain: social-polls-by-opinionstage
|
@@ -24,7 +24,7 @@ if ( defined('WP_DEBUG') && true === WP_DEBUG ) {
|
|
24 |
}
|
25 |
}
|
26 |
|
27 |
-
define('OPINIONSTAGE_WIDGET_VERSION', '19.6.
|
28 |
|
29 |
define('OPINIONSTAGE_TEXT_DOMAIN', 'social-polls-by-opinionstage');
|
30 |
|
3 |
Plugin Name: Poll, Survey, Form & Quiz Maker by OpinionStage
|
4 |
Plugin URI: https://www.opinionstage.com
|
5 |
Description: Add a highly engaging poll, survey, quiz or contact form builder to your site. You can add the poll, survey, quiz or form to any post/page or to the sidebar.
|
6 |
+
Version: 19.6.28
|
7 |
Author: OpinionStage.com
|
8 |
Author URI: https://www.opinionstage.com
|
9 |
Text Domain: social-polls-by-opinionstage
|
24 |
}
|
25 |
}
|
26 |
|
27 |
+
define('OPINIONSTAGE_WIDGET_VERSION', '19.6.28');
|
28 |
|
29 |
define('OPINIONSTAGE_TEXT_DOMAIN', 'social-polls-by-opinionstage');
|
30 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.opinionstage.com
|
|
4 |
Tags: poll, quiz, survey, form
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 5.2.2
|
7 |
-
Stable tag: 19.6.
|
8 |
Requires PHP: 5.2
|
9 |
|
10 |
Add Polls, Surveys or Quizzes to your Wordpress site. Create from scratch or based on templates. Get started in seconds.
|
@@ -116,6 +116,8 @@ Opinion Stage makes it easy for you to comply with the GDPR regulation. For more
|
|
116 |
N/A
|
117 |
|
118 |
== Changelog ==
|
|
|
|
|
119 |
= 19.6.27 =
|
120 |
* remove external curl dependency
|
121 |
= 19.6.26 =
|
4 |
Tags: poll, quiz, survey, form
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 5.2.2
|
7 |
+
Stable tag: 19.6.28
|
8 |
Requires PHP: 5.2
|
9 |
|
10 |
Add Polls, Surveys or Quizzes to your Wordpress site. Create from scratch or based on templates. Get started in seconds.
|
116 |
N/A
|
117 |
|
118 |
== Changelog ==
|
119 |
+
= 19.6.28 =
|
120 |
+
* fix message display
|
121 |
= 19.6.27 =
|
122 |
* remove external curl dependency
|
123 |
= 19.6.26 =
|