aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/views.php
diff options
context:
space:
mode:
authorBrett Profitt <brett.profitt@gmail.com>2011-08-29 18:38:04 -0700
committerBrett Profitt <brett.profitt@gmail.com>2011-08-29 18:38:04 -0700
commite32bfa450e9a07f6f6575b84d18eb63bd72969f4 (patch)
tree5d4a9352ed05bac7c101b9ce1bed51fc3492bbfa /engine/lib/views.php
parent6a35035cc68a5ad95553d75c4de192b26046134e (diff)
downloadelgg-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.php2
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');