Version Description
FIXED: slashes not stripped in popup content
Download this release
Release Info
Developer | ITRO |
Plugin | ITRO Popup Plugin |
Version | 4.9.6 |
Comparing to | |
See all releases |
Code changes from version 4.9.5 to 4.9.6
- admin/popup-admin.php +1 -1
- mc-main.php +2 -2
- readme.txt +7 -1
admin/popup-admin.php
CHANGED
@@ -470,7 +470,7 @@ if( isset($_POST[ $submitted_form ]) && $_POST[ $submitted_form ] == 'Y' || isse
|
|
470 |
<p class="wpstyle" onClick="jQuery('#customHtmlForm').toggle();"><?php _e("Your text (or HTML code):", 'itro-plugin' ); ?> </p>
|
471 |
<div id="customHtmlForm">
|
472 |
<?php
|
473 |
-
$content = $field_value;
|
474 |
wp_editor( $content, 'custom_html', array('textarea_name'=> 'custom_html','teeny'=>false, 'media_buttons'=>true, 'wpautop'=>false ) ); ?>
|
475 |
<br><br>
|
476 |
<hr>
|
470 |
<p class="wpstyle" onClick="jQuery('#customHtmlForm').toggle();"><?php _e("Your text (or HTML code):", 'itro-plugin' ); ?> </p>
|
471 |
<div id="customHtmlForm">
|
472 |
<?php
|
473 |
+
$content = stripslashes($field_value);
|
474 |
wp_editor( $content, 'custom_html', array('textarea_name'=> 'custom_html','teeny'=>false, 'media_buttons'=>true, 'wpautop'=>false ) ); ?>
|
475 |
<br><br>
|
476 |
<hr>
|
mc-main.php
CHANGED
@@ -6,14 +6,14 @@ Description: EN - Show a perfecly centered customizable popup and a popup-system
|
|
6 |
Author: ITRO Team
|
7 |
E-mail: support@itroteam.com
|
8 |
Text Domain: itro-popup
|
9 |
-
Version: 4.9.
|
10 |
Author URI: http://www.itroteam.com
|
11 |
*/
|
12 |
|
13 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
14 |
|
15 |
global $ITRO_VER;
|
16 |
-
$ITRO_VER = 4.
|
17 |
|
18 |
global $popup_fired; //it check if there is a popup visualization via shortcode or via automatic visualization
|
19 |
$popup_fired = false;
|
6 |
Author: ITRO Team
|
7 |
E-mail: support@itroteam.com
|
8 |
Text Domain: itro-popup
|
9 |
+
Version: 4.9.6
|
10 |
Author URI: http://www.itroteam.com
|
11 |
*/
|
12 |
|
13 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
14 |
|
15 |
global $ITRO_VER;
|
16 |
+
$ITRO_VER = 4.96;
|
17 |
|
18 |
global $popup_fired; //it check if there is a popup visualization via shortcode or via automatic visualization
|
19 |
$popup_fired = false;
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.itroteam.com/
|
|
4 |
Tags: multilingual popup, popup, popup message, popuup optin, popup box, popup ads, popup advertising, popup block, popup content warning, fancy box, fancy popup, advertising popup, pop-up, lightbox popup
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 4.5
|
7 |
-
Stable tag: 4.9.
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -101,6 +101,9 @@ DONATE NOW! - HELP US TO KEEP IT FREE! [DONATE NOW](http://www.itroteam.com/)
|
|
101 |
VIEW LIVE DEMOS ON OUR OFFICIAL SITE - [CLICK HERE!](http://www.itroteam.com/)
|
102 |
|
103 |
== Changelog ==
|
|
|
|
|
|
|
104 |
= 4.9.5 =
|
105 |
FIXED: DB update for "auto" height error of 4.9.3
|
106 |
|
@@ -340,6 +343,9 @@ bug fixed: color table now works in admin pannel.
|
|
340 |
First released version.
|
341 |
|
342 |
== Upgrade Notice ==
|
|
|
|
|
|
|
343 |
= 4.9.5 =
|
344 |
FIXED: DB update for "auto" height error of 4.9.3
|
345 |
|
4 |
Tags: multilingual popup, popup, popup message, popuup optin, popup box, popup ads, popup advertising, popup block, popup content warning, fancy box, fancy popup, advertising popup, pop-up, lightbox popup
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 4.5
|
7 |
+
Stable tag: 4.9.6
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
101 |
VIEW LIVE DEMOS ON OUR OFFICIAL SITE - [CLICK HERE!](http://www.itroteam.com/)
|
102 |
|
103 |
== Changelog ==
|
104 |
+
= 4.9.6 =
|
105 |
+
FIXED: slashes not stripped in popup content
|
106 |
+
|
107 |
= 4.9.5 =
|
108 |
FIXED: DB update for "auto" height error of 4.9.3
|
109 |
|
343 |
First released version.
|
344 |
|
345 |
== Upgrade Notice ==
|
346 |
+
= 4.9.6 =
|
347 |
+
FIXED: slashes not stripped in popup content
|
348 |
+
|
349 |
= 4.9.5 =
|
350 |
FIXED: DB update for "auto" height error of 4.9.3
|
351 |
|