Popup Maker – Popup Forms, Optins & More - Version 1.8.10

Version Description

Download this release

Release Info

Developer danieliser
Plugin Icon 128x128 Popup Maker – Popup Forms, Optins & More
Version 1.8.10
Comparing to
See all releases

Code changes from version 1.8.9 to 1.8.10

CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
 
 
 
1
  ### v1.8.9 - 07/04/2019
2
  * Fix: Issue where popup titles wouldn't render.
3
 
1
+ ### v1.8.10 - 07/06/2019
2
+ * Fix: PHP backward compatibility issue due to short array syntax usage.
3
+
4
  ### v1.8.9 - 07/04/2019
5
  * Fix: Issue where popup titles wouldn't render.
6
 
includes/modules/admin-bar.php CHANGED
@@ -43,13 +43,13 @@ class PUM_Modules_Admin_Bar {
43
  * @return bool
44
  */
45
  public static function should_render() {
46
- $tests = [
47
  is_user_logged_in(),
48
  ! is_admin(),
49
  is_admin_bar_showing(),
50
  ! pum_get_option( 'disabled_admin_bar' ),
51
  ( current_user_can( 'edit_others_posts' ) || current_user_can( 'manage_options' ) ),
52
- ];
53
 
54
  return ! in_array( false, $tests );
55
  }
43
  * @return bool
44
  */
45
  public static function should_render() {
46
+ $tests = array(
47
  is_user_logged_in(),
48
  ! is_admin(),
49
  is_admin_bar_showing(),
50
  ! pum_get_option( 'disabled_admin_bar' ),
51
  ( current_user_can( 'edit_others_posts' ) || current_user_can( 'manage_options' ) ),
52
+ );
53
 
54
  return ! in_array( false, $tests );
55
  }
popup-maker.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Popup Maker
4
  * Plugin URI: https://wppopupmaker.com/?utm_campaign=PluginInfo&utm_source=plugin-header&utm_medium=plugin-uri
5
  * Description: Easily create & style popups with any content. Theme editor to quickly style your popups. Add forms, social media boxes, videos & more.
6
- * Version: 1.8.9
7
  * Author: WP Popup Maker
8
  * Author URI: https://wppopupmaker.com/?utm_campaign=PluginInfo&utm_source=plugin-header&utm_medium=author-uri
9
  * License: GPL2 or later
@@ -95,7 +95,7 @@ class Popup_Maker {
95
  /**
96
  * @var string Plugin Version
97
  */
98
- public static $VER = '1.8.9';
99
 
100
  /**
101
  * @var int DB Version
3
  * Plugin Name: Popup Maker
4
  * Plugin URI: https://wppopupmaker.com/?utm_campaign=PluginInfo&utm_source=plugin-header&utm_medium=plugin-uri
5
  * Description: Easily create & style popups with any content. Theme editor to quickly style your popups. Add forms, social media boxes, videos & more.
6
+ * Version: 1.8.10
7
  * Author: WP Popup Maker
8
  * Author URI: https://wppopupmaker.com/?utm_campaign=PluginInfo&utm_source=plugin-header&utm_medium=author-uri
9
  * License: GPL2 or later
95
  /**
96
  * @var string Plugin Version
97
  */
98
+ public static $VER = '1.8.10';
99
 
100
  /**
101
  * @var int DB Version
readme.txt CHANGED
@@ -7,7 +7,7 @@ Tags: marketing, popup, popups, optin, advertising, conversion, responsive popu
7
  Requires at least: 4.1
8
  Tested up to: 5.3
9
  Requires PHP: 5.2.17
10
- Stable tag: 1.8.9
11
  License: GPLv2 or later
12
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
 
@@ -98,6 +98,9 @@ There are several common causes for this, check [this guide for help](https://do
98
 
99
  View our [complete changelog](https://github.com/PopupMaker/Popup-Maker/blob/master/CHANGELOG.md) for up-to-date information on what has been going on with the development of Popup Maker.
100
 
 
 
 
101
  = v1.8.9 - 07/04/2019 =
102
  * Fix: Issue where popup titles wouldn't render.
103
 
7
  Requires at least: 4.1
8
  Tested up to: 5.3
9
  Requires PHP: 5.2.17
10
+ Stable tag: 1.8.10
11
  License: GPLv2 or later
12
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
 
98
 
99
  View our [complete changelog](https://github.com/PopupMaker/Popup-Maker/blob/master/CHANGELOG.md) for up-to-date information on what has been going on with the development of Popup Maker.
100
 
101
+ = v1.8.10 - 07/06/2019 =
102
+ * Fix: PHP backward compatibility issue due to short array syntax usage.
103
+
104
  = v1.8.9 - 07/04/2019 =
105
  * Fix: Issue where popup titles wouldn't render.
106