Easy Modal - Version 1.1.9.8

Version Description

Download this release

Release Info

Developer danieliser
Plugin Icon 128x128 Easy Modal
Version 1.1.9.8
Comparing to
See all releases

Code changes from version 1.1.9.7 to 1.1.9.8

Files changed (2) hide show
  1. easy-modal.php +4 -5
  2. readme.txt +1 -1
easy-modal.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Easy Modal
4
  Plugin URI: http://wizardinternetsolutions.com/plugins/easy-modal/
5
  Description: Easy Modal allows you to easily add just about any shortcodes or other content into a modal window. This includes forms such as CF7.
6
  Author: Wizard Internet Solutions
7
- Version: 1.1.9.7
8
  Author URI: http://wizardinternetsolutions.com
9
  */
10
  add_action('admin_init', '_disable_older_versions', 1 );
@@ -18,7 +18,7 @@ function _disable_older_versions()
18
  /* Change Begin */
19
  class Easy_Modal {
20
  var $Plugin = array(
21
- 'version' => '1.1.9.7',
22
  'name' => 'Easy Modal',
23
  'slug' => 'easy-modal',
24
  'short'=> 'EasyModal'
@@ -34,12 +34,11 @@ class Easy_Modal {
34
  // Add WPMU Support
35
  // Add default options on new site creation.
36
  add_action('wpmu_new_blog', array(&$this, '_wpmu_activation'));
 
37
 
38
  if (is_admin())
39
  {
40
-
41
  add_action('init', array(&$this,'_activation'),9);
42
- add_action('init', array(&$this,'_migrate'),10);
43
  register_activation_hook(__FILE__, array(&$this, '_activation'));
44
 
45
  add_action('admin_menu', array(&$this, '_menus') );
@@ -191,7 +190,7 @@ class Easy_Modal {
191
  {
192
  $this->resetOptions();
193
  }
194
- update_option('EasyModal_Version', $this->Plugin['info']['Version']);
195
  }
196
  public function _migrate()
197
  {
4
  Plugin URI: http://wizardinternetsolutions.com/plugins/easy-modal/
5
  Description: Easy Modal allows you to easily add just about any shortcodes or other content into a modal window. This includes forms such as CF7.
6
  Author: Wizard Internet Solutions
7
+ Version: 1.1.9.8
8
  Author URI: http://wizardinternetsolutions.com
9
  */
10
  add_action('admin_init', '_disable_older_versions', 1 );
18
  /* Change Begin */
19
  class Easy_Modal {
20
  var $Plugin = array(
21
+ 'version' => '1.1.9.8',
22
  'name' => 'Easy Modal',
23
  'slug' => 'easy-modal',
24
  'short'=> 'EasyModal'
34
  // Add WPMU Support
35
  // Add default options on new site creation.
36
  add_action('wpmu_new_blog', array(&$this, '_wpmu_activation'));
37
+ add_action('init', array(&$this,'_migrate'),10);
38
 
39
  if (is_admin())
40
  {
 
41
  add_action('init', array(&$this,'_activation'),9);
 
42
  register_activation_hook(__FILE__, array(&$this, '_activation'));
43
 
44
  add_action('admin_menu', array(&$this, '_menus') );
190
  {
191
  $this->resetOptions();
192
  }
193
+ update_option('EasyModal_Version', $this->Plugin['version']);
194
  }
195
  public function _migrate()
196
  {
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: modal, contact form 7, ajax, gravity forms, ajax form
5
  Requires at least: 3.0.1
6
  Tested up to: 3.5.2
7
- Stable tag: 1.1.9.7
8
 
9
  This plugin allows you to easily add a Modal window with just about any content including Contact Form 7 using ajax submission.
10
 
4
  Tags: modal, contact form 7, ajax, gravity forms, ajax form
5
  Requires at least: 3.0.1
6
  Tested up to: 3.5.2
7
+ Stable tag: 1.1.9.8
8
 
9
  This plugin allows you to easily add a Modal window with just about any content including Contact Form 7 using ajax submission.
10