diff options
author | Brett Profitt <brett.profitt@gmail.com> | 2011-08-29 18:38:04 -0700 |
---|---|---|
committer | Brett Profitt <brett.profitt@gmail.com> | 2011-08-29 18:38:04 -0700 |
commit | e32bfa450e9a07f6f6575b84d18eb63bd72969f4 (patch) | |
tree | 5d4a9352ed05bac7c101b9ce1bed51fc3492bbfa /engine/lib/views.php | |
parent | 6a35035cc68a5ad95553d75c4de192b26046134e (diff) | |
download | elgg-e32bfa450e9a07f6f6575b84d18eb63bd72969f4.tar.gz elgg-e32bfa450e9a07f6f6575b84d18eb63bd72969f4.tar.bz2 |
Fixes #3461: Using absolute URLs for lightbox CSS.
Diffstat (limited to 'engine/lib/views.php')
-rw-r--r-- | engine/lib/views.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/views.php b/engine/lib/views.php index 68c1badbc..16aa147e4 100644 --- a/engine/lib/views.php +++ b/engine/lib/views.php @@ -1560,7 +1560,7 @@ function elgg_views_boot() { elgg_register_simplecache_view('js/lightbox'); $lightbox_js_url = elgg_get_simplecache_url('js', 'lightbox'); elgg_register_js('lightbox', $lightbox_js_url); - $lightbox_css_url = 'vendors/jquery/fancybox/jquery.fancybox-1.3.4.css'; + $lightbox_css_url = elgg_get_simplecache_url('css', 'lightbox'); elgg_register_css('lightbox', $lightbox_css_url); $elgg_css_url = elgg_get_simplecache_url('css', 'elgg'); |