Page Visit Counter - Version 4.5

Version Description

  • 11-06-2018 =
  • Fix vulnerable plugin issue.
Download this release

Release Info

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

Code changes from version 4.4 to 4.5

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.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,6 +115,9 @@ Automatic updates should work great for you. As always, though, we recommend ba
115
 
116
  == Changelog ==
117
 
 
 
 
118
  = 4.4 - 08-06-2018 =
119
  * minor bug fixed.
120
 
4
  Author: Multidots
5
  Author URI: http://multidots.com/
6
  Contributors: dots, ketuchetan, chiragpatel, jitendrabanjara1991
7
+ Stable tag: 4.5
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.5 - 11-06-2018 =
119
+ * Fix vulnerable plugin issue.
120
+
121
  = 4.4 - 08-06-2018 =
122
  * minor bug fixed.
123
 
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
  }
@@ -753,10 +753,10 @@ class page_visit_counter_Admin
753
  </script>
754
  <?php
755
  } else { ?>
756
- <form id="movies-filter" method="get">
757
  <?php
758
  $test_list_table->search_box('Search','');
759
- foreach ($_GET as $key => $value) {
760
  if ('s' !== $key) // don't include the search query
761
  {
762
  // echo("<input type='hidden' name='".esc_attr($key)."' value='".esc_attr($value)."' />");
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
  }
753
  </script>
754
  <?php
755
  } else { ?>
756
+ <form id="movies-filter" method="post">
757
  <?php
758
  $test_list_table->search_box('Search','');
759
+ foreach ($_POST as $key => $value) {
760
  if ('s' !== $key) // don't include the search query
761
  {
762
  // echo("<input type='hidden' name='".esc_attr($key)."' value='".esc_attr($value)."' />");
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.4
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.5
11
  * Author URI: http://www.multidots.com/
12
  */
13
  // If this file is called directly, abort.