diff options
author | Craig Andrews <candrews@integralblue.com> | 2009-08-05 20:15:00 -0400 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2009-08-05 20:15:00 -0400 |
commit | 5ba33836654e7e09098880fe9e6e9d3593f23b40 (patch) | |
tree | a9d52922735fe5c87e16b88bdde3c998b65f40ae /plugins/FBConnect/FBC_XDReceiver.php | |
parent | 9a9195ecd8eea36943dbb5e46adf685aef9edc4e (diff) |
Use script() to write out javascript <script> tags
Diffstat (limited to 'plugins/FBConnect/FBC_XDReceiver.php')
-rw-r--r-- | plugins/FBConnect/FBC_XDReceiver.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/plugins/FBConnect/FBC_XDReceiver.php b/plugins/FBConnect/FBC_XDReceiver.php index d9677fca7..19251cca4 100644 --- a/plugins/FBConnect/FBC_XDReceiver.php +++ b/plugins/FBConnect/FBC_XDReceiver.php @@ -56,10 +56,7 @@ class FBC_XDReceiverAction extends Action 'lang' => $language)); $this->elementStart('head'); $this->element('title', null, 'cross domain receiver page'); - $this->element('script', - array('src' => - 'http://static.ak.connect.facebook.com/js/api_lib/v0.4/XdCommReceiver.debug.js', - 'type' => 'text/javascript'), ''); + $this->script('http://static.ak.connect.facebook.com/js/api_lib/v0.4/XdCommReceiver.debug.js'); $this->elementEnd('head'); $this->elementStart('body'); $this->elementEnd('body'); |