WP125 - Version 1.4.0

Version Description

Download this release

Release Info

Developer redwallhp
Plugin Icon wp plugin WP125
Version 1.4.0
Comparing to
See all releases

Code changes from version 1.3.9 to 1.4.0

Files changed (3) hide show
  1. installer.php +6 -1
  2. readme.txt +3 -2
  3. wp125.php +1 -1
installer.php CHANGED
@@ -1,6 +1,11 @@
1
  <?php
2
  //***** Installer *****
3
- require_once(ABSPATH . 'wp-admin/upgrade.php');
 
 
 
 
 
4
  //***Installer variables***
5
  global $wpdb;
6
  $table_name = $wpdb->prefix . "wp125_ads";
1
  <?php
2
  //***** Installer *****
3
+ global $wp_version;
4
+ if (version_compare($wp_version, '3.0', '<')) {
5
+ require_once(ABSPATH . 'wp-admin/upgrade.php');
6
+ } else {
7
+ require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
8
+ }
9
  //***Installer variables***
10
  global $wpdb;
11
  $table_name = $wpdb->prefix . "wp125_ads";
readme.txt CHANGED
@@ -6,7 +6,7 @@ Donate link: http://www.webmaster-source.com/donate/?plugin=wp125
6
  Tags: ads, 125x125, management, advertisement
7
  Requires at least: 2.3
8
  Tested up to: 2.9.1
9
- Stable tag: 1.3.9
10
 
11
  Easy management of 125x125 ads on your blog. Ads can be run for a specified number of days, and will automatically be taken down. Track clicks too.
12
 
@@ -115,4 +115,5 @@ If you're having a problem with the plugin, try posting on the official WordPres
115
  * 1.3.x - Localization support (with French and Spanish to start), iCalendar subscription of ad expirations, WP Dashboard widget. Fixed errant "ADLINK_EXTRA"s in Single ads, fixed "no ads, no placeholders" bug, etc..
116
  * 1.3.7 - Added Russian translation.
117
  * 1.3.8 - Added zh_CN translation
118
- * 1.3.9 - Changed SQL query on 131 of adminmenus.php to fix bug where ads are not inserted in some situations. Added Dutch and Brasilian Portuguese translation files.
 
6
  Tags: ads, 125x125, management, advertisement
7
  Requires at least: 2.3
8
  Tested up to: 2.9.1
9
+ Stable tag: 1.4.0
10
 
11
  Easy management of 125x125 ads on your blog. Ads can be run for a specified number of days, and will automatically be taken down. Track clicks too.
12
 
115
  * 1.3.x - Localization support (with French and Spanish to start), iCalendar subscription of ad expirations, WP Dashboard widget. Fixed errant "ADLINK_EXTRA"s in Single ads, fixed "no ads, no placeholders" bug, etc..
116
  * 1.3.7 - Added Russian translation.
117
  * 1.3.8 - Added zh_CN translation
118
+ * 1.3.9 - Changed SQL query on 131 of adminmenus.php to fix bug where ads are not inserted in some situations. Added Dutch and Brasilian Portuguese translation files.
119
+ * 1.4.0 - Now with WordPress 3.0 support!
wp125.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.webmaster-source.com/wp125-ad-plugin-wordpress/
5
  Description: Easily manage 125x125 ads within your WordPress Dashboard.
6
  Author: Matt Harzewski (redwall_hp)
7
  Author URI: http://www.webmaster-source.com
8
- Version: 1.3.9
9
  */
10
 
11
 
5
  Description: Easily manage 125x125 ads within your WordPress Dashboard.
6
  Author: Matt Harzewski (redwall_hp)
7
  Author URI: http://www.webmaster-source.com
8
+ Version: 1.4.0
9
  */
10
 
11