diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-01-19 02:13:25 +0000 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-01-19 02:13:25 +0000 |
commit | cd6b9d6c4608cc5bb524031f8de97a3dc5cc3ea9 (patch) | |
tree | b95f51eefbf7f0d1456fe03cbd21f1fda10c0d95 /lib/facebookaction.php | |
parent | 5f2fce04cb7726f44b797908b073e22e399b8be2 (diff) |
trac750 fix method calls to get CSS files
Diffstat (limited to 'lib/facebookaction.php')
-rw-r--r-- | lib/facebookaction.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/facebookaction.php b/lib/facebookaction.php index fd171c457..263248f67 100644 --- a/lib/facebookaction.php +++ b/lib/facebookaction.php @@ -155,7 +155,15 @@ class FacebookAction extends Action common_element('link', array('rel' => 'stylesheet', 'type' => 'text/css', - 'href' => getFacebookCSS())); + 'href' => getFacebookBaseCSS())); + + common_element('link', array('rel' => 'stylesheet', + 'type' => 'text/css', + 'href' => getFacebookThemeCSS())); + + common_element('script', array('type' => 'text/javascript', + 'src' => getFacebookJS()), + ' '); $this->showLogo(); |