Easy Coming Soon - Version 1.6

Version Description

  1. Plugin is now compatible with PHP 5.5
Download this release

Release Info

Developer a.ankit
Plugin Icon 128x128 Easy Coming Soon
Version 1.6
Comparing to
See all releases

Code changes from version 1.5.1 to 1.6

Files changed (2) hide show
  1. coming-soon-plugin.php +15 -15
  2. readme.txt +5 -2
coming-soon-plugin.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name:Easy Coming Soon
4
  Description: Easy coming Soon plugin allows you to quickly create a launch / under construction page for your website. Collect E-mails and connect with users on Social Networks.
5
- Version: 1.5.1
6
  Author:Deepesh paiwal, ANkit Agarwal
7
  Author URI: http://webriti.com
8
  Plugin URI: http://webriti.com
@@ -203,16 +203,16 @@ border-radius: 3px;
203
  //when ajax action call to post data from general settings page
204
  if(isset($_POST['action']) == "coming_soon_page_settings")
205
  {
206
- $status = mysql_real_escape_string($_POST['status']);
207
- $background = mysql_real_escape_string($_POST['background']);
208
- $title = mysql_real_escape_string($_POST['title']);
209
  $descrip = stripslashes($_POST['descrip']);
210
  $google_code = stripslashes($_POST['google_code']);
211
 
212
 
213
- $fb = mysql_real_escape_string($_POST['fb']);
214
- $twit = mysql_real_escape_string($_POST['twit']);
215
- $gp = mysql_real_escape_string($_POST['gp']);
216
 
217
  //all data is sotre in array form
218
  $general_page_save_setting = array( 'status' => $status,
@@ -287,14 +287,14 @@ border-radius: 3px;
287
  {
288
  if(isset($_POST['action']) == "coming_soon_page_design_settings")
289
  {
290
- $background_color = mysql_real_escape_string($_POST['background_color']);
291
- $title_color = mysql_real_escape_string($_POST['title_color']);
292
- $title_font_size = mysql_real_escape_string($_POST['pxselect_post_title']);
293
- $title_font_format = mysql_real_escape_string($_POST['font_family_post_title']);
294
- $descrip_color = mysql_real_escape_string($_POST['descrip_color']);
295
- $description_font_size = mysql_real_escape_string($_POST['pxselect_post_entry']);
296
- $description_font_format = mysql_real_escape_string($_POST['font_family_post_description']);
297
- $background_effect= mysql_real_escape_string($_POST['background_effect']);
298
 
299
  $design_settings_save_setting = array( 'background_color' => $background_color,
300
  'title_color' => $title_color,
2
  /*
3
  Plugin Name:Easy Coming Soon
4
  Description: Easy coming Soon plugin allows you to quickly create a launch / under construction page for your website. Collect E-mails and connect with users on Social Networks.
5
+ Version: 1.6
6
  Author:Deepesh paiwal, ANkit Agarwal
7
  Author URI: http://webriti.com
8
  Plugin URI: http://webriti.com
203
  //when ajax action call to post data from general settings page
204
  if(isset($_POST['action']) == "coming_soon_page_settings")
205
  {
206
+ $status = $_POST['status'];
207
+ $background = $_POST['background'];
208
+ $title = $_POST['title'];
209
  $descrip = stripslashes($_POST['descrip']);
210
  $google_code = stripslashes($_POST['google_code']);
211
 
212
 
213
+ $fb = $_POST['fb'];
214
+ $twit = $_POST['twit'];
215
+ $gp = $_POST['gp'];
216
 
217
  //all data is sotre in array form
218
  $general_page_save_setting = array( 'status' => $status,
287
  {
288
  if(isset($_POST['action']) == "coming_soon_page_design_settings")
289
  {
290
+ $background_color = $_POST['background_color'];
291
+ $title_color = $_POST['title_color'];
292
+ $title_font_size = $_POST['pxselect_post_title'];
293
+ $title_font_format = $_POST['font_family_post_title'];
294
+ $descrip_color = $_POST['descrip_color'];
295
+ $description_font_size = $_POST['pxselect_post_entry'];
296
+ $description_font_format = $_POST['font_family_post_description'];
297
+ $background_effect= $_POST['background_effect'];
298
 
299
  $design_settings_save_setting = array( 'background_color' => $background_color,
300
  'title_color' => $title_color,
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: a.ankit, deepeshpaliwal,priyanshu.mittal
3
  Donate link: http://www.webriti.com/
4
  Tags: coming soon, coming soon page, construction, landing page, launch, launch page, maintenance, maintenance mode, under construction, admin, newsletter, offline, site offline, wordpress coming soon, wordpress under construction, wordpress maintenance mode,email,gmail,subscriber,notify,message,user,preview,
5
  Requires at least: 3.3+
6
- Tested up to: 4.0
7
- Stable tag: 1.5.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -110,6 +110,9 @@ In case you face any problem, contact us via the [Forums](http://wordpress.org/s
110
 
111
  == Changelog ==
112
 
 
 
 
113
  = 1.5.1 =
114
  1. Silly Bug Fix
115
 
3
  Donate link: http://www.webriti.com/
4
  Tags: coming soon, coming soon page, construction, landing page, launch, launch page, maintenance, maintenance mode, under construction, admin, newsletter, offline, site offline, wordpress coming soon, wordpress under construction, wordpress maintenance mode,email,gmail,subscriber,notify,message,user,preview,
5
  Requires at least: 3.3+
6
+ Tested up to: 4.1
7
+ Stable tag: 1.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
110
 
111
  == Changelog ==
112
 
113
+ = 1.6 =
114
+ 1. Plugin is now compatible with PHP 5.5
115
+
116
  = 1.5.1 =
117
  1. Silly Bug Fix
118