diff options
author | Evan Prodromou <evan@status.net> | 2010-01-27 17:55:33 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-01-27 17:55:33 -0500 |
commit | 2aba2eeeaf78f4e407abe23643ff6027b0ea53dd (patch) | |
tree | 54bd64f2b46838287138bc467d49dc7deee3ed51 /plugins | |
parent | 00d9b215f4de97f94035880041179879fcf0d201 (diff) |
width and height should be integers in AdsensePlugin
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Adsense/AdsensePlugin.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Adsense/AdsensePlugin.php b/plugins/Adsense/AdsensePlugin.php index dc2b32bc8..ab2b9a6fb 100644 --- a/plugins/Adsense/AdsensePlugin.php +++ b/plugins/Adsense/AdsensePlugin.php @@ -150,8 +150,8 @@ class AdsensePlugin extends UAPPlugin { $code = 'google_ad_client = "'.$this->client.'"; '; $code .= 'google_ad_slot = "'.$slot.'"; '; - $code .= 'google_ad_width = "'.$width.'"; '; - $code .= 'google_ad_height = "'.$height.'"; '; + $code .= 'google_ad_width = '.$width.'; '; + $code .= 'google_ad_height = '.$height.'; '; $action->inlineScript($code); |