summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--actions/facebookhome.php10
-rw-r--r--lib/facebookaction.php10
2 files changed, 18 insertions, 2 deletions
diff --git a/actions/facebookhome.php b/actions/facebookhome.php
index d211e8844..7430cc41f 100644
--- a/actions/facebookhome.php
+++ b/actions/facebookhome.php
@@ -179,7 +179,15 @@ class FacebookhomeAction extends FacebookAction
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();
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();