Page Visit Counter - Version 4.4

Version Description

  • 08-06-2018 =
  • minor bug fixed.
Download this release

Release Info

Developer dots
Plugin Icon 128x128 Page Visit Counter
Version 4.4
Comparing to
See all releases

Code changes from version 4.3 to 4.4

README.txt CHANGED
@@ -4,7 +4,7 @@ Plugin URI: http://multidots.com/
4
  Author: Multidots
5
  Author URI: http://multidots.com/
6
  Contributors: dots, ketuchetan, chiragpatel, jitendrabanjara1991
7
- Stable tag: 4.3
8
  Tags: page counter,page visit, post counter, post visit, wordpress post view, wordpress page view, page visit graph, post visit graph,
9
  Requires at least: 2.1
10
  Tested up to: 4.9.6
@@ -115,6 +115,9 @@ Automatic updates should work great for you. As always, though, we recommend ba
115
 
116
  == Changelog ==
117
 
 
 
 
118
  = 4.3 - 06-06-2018 =
119
  * Fixed vulnerable code issue
120
  * Compatible with WordPress 4.9.x
4
  Author: Multidots
5
  Author URI: http://multidots.com/
6
  Contributors: dots, ketuchetan, chiragpatel, jitendrabanjara1991
7
+ Stable tag: 4.4
8
  Tags: page counter,page visit, post counter, post visit, wordpress post view, wordpress page view, page visit graph, post visit graph,
9
  Requires at least: 2.1
10
  Tested up to: 4.9.6
115
 
116
  == Changelog ==
117
 
118
+ = 4.4 - 08-06-2018 =
119
+ * minor bug fixed.
120
+
121
  = 4.3 - 06-06-2018 =
122
  * Fixed vulnerable code issue
123
  * Compatible with WordPress 4.9.x
admin/class-page-visit-counter-admin.php CHANGED
@@ -148,7 +148,7 @@ class page_visit_counter_Admin
148
  } else {
149
  wp_localize_script('wp-color-picker', 'wpColorPickerL10n', '');
150
  }
151
- if (isset($_GET['page']) && !empty($_GET['page']) && ($_GET['page'] == 'page_visit_settings') && ($_GET['page'] == 'page_visit_counter') ) {
152
 
153
  wp_localize_script('one', 'pagevisit', array('ajaxurl' => admin_url('admin-ajax.php')));
154
  }
148
  } else {
149
  wp_localize_script('wp-color-picker', 'wpColorPickerL10n', '');
150
  }
151
+ if (isset($_GET['page']) && !empty($_GET['page']) && ($_GET['page'] == 'page_visit_settings') || ($_GET['page'] == 'page_visit_counter') ) {
152
 
153
  wp_localize_script('one', 'pagevisit', array('ajaxurl' => admin_url('admin-ajax.php')));
154
  }
page_visit_counter.php CHANGED
@@ -7,7 +7,7 @@
7
  * Plugin URI: http://www.multidots.com/
8
  * Description: This plugin will count the total visits of your sites pages.
9
  * Author: Multidots
10
- * Version: 4.3
11
  * Author URI: http://www.multidots.com/
12
  */
13
  // If this file is called directly, abort.
7
  * Plugin URI: http://www.multidots.com/
8
  * Description: This plugin will count the total visits of your sites pages.
9
  * Author: Multidots
10
+ * Version: 4.4
11
  * Author URI: http://www.multidots.com/
12
  */
13
  // If this file is called directly, abort.