Top 10 – Popular posts plugin for WordPress - Version 1.9.10.2

Version Description

  • Fixed: Schedules were overwritten when activating the maintenance cron job

=

Download this release

Release Info

Developer Ajay
Plugin Icon 128x128 Top 10 – Popular posts plugin for WordPress
Version 1.9.10.2
Comparing to
See all releases

Code changes from version 1.9.10.1 to 1.9.10.2

Files changed (3) hide show
  1. README.md +1 -1
  2. readme.txt +6 -6
  3. top-10.php +2 -2
README.md CHANGED
@@ -2,7 +2,7 @@
2
 
3
  __Requires:__ 3.0
4
 
5
- __Tested up to:__ 4.0
6
 
7
  __License:__ [GPL-2.0+](http://www.gnu.org/licenses/gpl-2.0.html)
8
 
2
 
3
  __Requires:__ 3.0
4
 
5
+ __Tested up to:__ 4.1
6
 
7
  __License:__ [GPL-2.0+](http://www.gnu.org/licenses/gpl-2.0.html)
8
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Contributors: Ajay
4
  Donate link: http://ajaydsouza.com/donate/
5
  Stable tag: trunk
6
  Requires at least: 3.3
7
- Tested up to: 4.0
8
  License: GPLv2 or later
9
 
10
 
@@ -53,15 +53,15 @@ If you're looking for a plugin to display related, look no further than my other
53
 
54
  == Upgrade Notice ==
55
 
56
- = 1.9.10.1 =
57
- Fixed: Initialisation error for new installs
58
 
59
- = 1.9.10 =
60
- New meta box to set thumbnails; Edit total view count; Stop tracking Editors; Shortcode accepts all parameters as options page;
61
- Refer to the Changelog for full list of changes.
62
 
63
  == Changelog ==
64
 
 
 
 
65
  = 1.9.10.1 =
66
  * Fixed: Initialisation error for new installs
67
 
4
  Donate link: http://ajaydsouza.com/donate/
5
  Stable tag: trunk
6
  Requires at least: 3.3
7
+ Tested up to: 4.1
8
  License: GPLv2 or later
9
 
10
 
53
 
54
  == Upgrade Notice ==
55
 
56
+ = 1.9.10.2 =
57
+ * Fixed: Schedules were overwritten when activating the maintenance cron job
58
 
 
 
 
59
 
60
  == Changelog ==
61
 
62
+ = 1.9.10.2 =
63
+ * Fixed: Schedules were overwritten when activating the maintenance cron job
64
+
65
  = 1.9.10.1 =
66
  * Fixed: Initialisation error for new installs
67
 
top-10.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: Top 10
4
- Version: 1.9.10.1
5
  Plugin URI: http://ajaydsouza.com/wordpress/plugins/top-10/
6
  Description: Count daily and total visits per post and display the most popular posts based on the number of views. Based on the plugin by <a href="http://weblogtoolscollection.com">Mark Ghosh</a>
7
  Author: Ajay D'Souza
@@ -1238,7 +1238,7 @@ if ( ! function_exists( 'ald_more_reccurences' ) ) :
1238
  * @access public
1239
  * @return void
1240
  */
1241
- function ald_more_reccurences() {
1242
  // add a 'weekly' interval
1243
  $schedules['weekly'] = array(
1244
  'interval' => 604800,
1
  <?php
2
  /*
3
  Plugin Name: Top 10
4
+ Version: 1.9.10.2
5
  Plugin URI: http://ajaydsouza.com/wordpress/plugins/top-10/
6
  Description: Count daily and total visits per post and display the most popular posts based on the number of views. Based on the plugin by <a href="http://weblogtoolscollection.com">Mark Ghosh</a>
7
  Author: Ajay D'Souza
1238
  * @access public
1239
  * @return void
1240
  */
1241
+ function ald_more_reccurences( $schedules ) {
1242
  // add a 'weekly' interval
1243
  $schedules['weekly'] = array(
1244
  'interval' => 604800,