diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-01-19 01:59:31 +0000 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-01-19 01:59:31 +0000 |
commit | 5f2fce04cb7726f44b797908b073e22e399b8be2 (patch) | |
tree | 66b9d5d7dd865ab5452deba4ad07ce349ade49b9 /lib | |
parent | 323432aec3da49b23c3fb270e42427abea745101 (diff) |
trac750 Updated paths for new css files; deleted old unused css file
Diffstat (limited to 'lib')
-rw-r--r-- | lib/facebookutil.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/facebookutil.php b/lib/facebookutil.php index 0bde68c0f..cc4941bdc 100644 --- a/lib/facebookutil.php +++ b/lib/facebookutil.php @@ -110,16 +110,16 @@ function update_profile_box($facebook, $fbuid, $user, $notice) function getFacebookBaseCSS() { # Add a timestamp to the CSS file so Facebook cache wont ignore our changes - $ts = filemtime(theme_file('facebookapp_base.css')); - $cssurl = theme_path('facebookapp_base.css') . "?ts=$ts"; + $ts = filemtime(INSTALLDIR.'/theme/base/css/facebookapp.base.css'); + $cssurl = INSTALLDIR.'/theme/base/css/facebookapp.base.css' . "?ts=$ts"; return $cssurl; } function getFacebookThemeCSS() { # Add a timestamp to the CSS file so Facebook cache wont ignore our changes - $ts = filemtime(theme_file('facebookapp_theme.css')); - $cssurl = theme_path('facebookapp_theme.css') . "?ts=$ts"; + $ts = filemtime(theme_file('css/facebookapp.theme.css')); + $cssurl = theme_path('css/facebookapp.theme.css') . "?ts=$ts"; return $cssurl; } |