fix adbox visibility

This commit is contained in:
John Bintz 2009-03-25 22:05:51 -04:00
parent e5f34f7a8d
commit 0bc9677dd1

View File

@ -67,10 +67,12 @@ class PluginWonderful {
function insert_rss_feed_ads($content) { function insert_rss_feed_ads($content) {
if (is_feed()) { if (is_feed()) {
foreach ($this->publisher_info->adboxes as $adbox) { if ($this->publisher_info !== false) {
if ($adbox->in_rss_feed == 1) { foreach ($this->publisher_info->adboxes as $adbox) {
if (preg_match("#<noscript>(.*)</noscript>#mis", $adbox->advancedcode, $matches) > 0) { if ($adbox->in_rss_feed == 1) {
echo $matches[1]; if (preg_match("#<noscript>(.*)</noscript>#mis", $adbox->advancedcode, $matches) > 0) {
echo $matches[1];
}
} }
} }
} }
@ -104,8 +106,11 @@ class PluginWonderful {
function inject_ads_into_body_copy($body) { function inject_ads_into_body_copy($body) {
if ($this->publisher_info !== false) { if ($this->publisher_info !== false) {
return $this->publisher_info->inject_ads_into_body_copy($body, (get_option("plugin-wonderful-use-standardcode") == 1)); if (get_option("plugin-wonderful-enable-body-copy-embedding") == 1) {
return $this->publisher_info->inject_ads_into_body_copy($body, (get_option("plugin-wonderful-use-standardcode") == 1));
}
} }
return $body;
} }
function set_up_menu() { function set_up_menu() {