Version Description
Download this release
Release Info
Developer | redwallhp |
Plugin | WP125 |
Version | 1.3.1 |
Comparing to | |
See all releases |
Code changes from version 1.3.0 to 1.3.1
- readme.txt +1 -1
- wp125.php +3 -3
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.7.1
|
9 |
-
Stable tag: 1.3.
|
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 |
|
6 |
Tags: ads, 125x125, management, advertisement
|
7 |
Requires at least: 2.3
|
8 |
Tested up to: 2.7.1
|
9 |
+
Stable tag: 1.3.1
|
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 |
|
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 |
*/
|
10 |
|
11 |
|
@@ -103,9 +103,9 @@ function wp125_CheckAdDate($thedate, $theid, $pre_exp_email) {
|
|
103 |
|
104 |
|
105 |
//Write the Ads
|
106 |
-
function wp125_write_ads($exclude) {
|
107 |
global $wpdb;
|
108 |
-
if (
|
109 |
$setting_ad_orientation = get_option("wp125_ad_orientation");
|
110 |
$setting_num_slots = get_option("wp125_num_slots");
|
111 |
$setting_ad_order = get_option("wp125_ad_order");
|
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.1
|
9 |
*/
|
10 |
|
11 |
|
103 |
|
104 |
|
105 |
//Write the Ads
|
106 |
+
function wp125_write_ads($exclude="0") {
|
107 |
global $wpdb;
|
108 |
+
if ($exclude != "0") { $exclude = implode(",", $exclude); }
|
109 |
$setting_ad_orientation = get_option("wp125_ad_orientation");
|
110 |
$setting_num_slots = get_option("wp125_num_slots");
|
111 |
$setting_ad_order = get_option("wp125_ad_order");
|