aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/elgglib.php
diff options
context:
space:
mode:
Diffstat (limited to 'engine/lib/elgglib.php')
-rw-r--r--engine/lib/elgglib.php11
1 files changed, 7 insertions, 4 deletions
diff --git a/engine/lib/elgglib.php b/engine/lib/elgglib.php
index 7afa7f17f..253421c7f 100644
--- a/engine/lib/elgglib.php
+++ b/engine/lib/elgglib.php
@@ -1937,13 +1937,16 @@
function js_page_handler($page) {
if (is_array($page) && sizeof($page)) {
+ $js = str_replace('.js','',$page[0]);
+ $return = elgg_view('js/' . $js);
+
header('Content-type: text/javascript');
header('Expires: ' . date('r',time() + 864000));
header("Pragma: public");
- header("Cache-Control: public");
- $js = str_replace('.js','',$page[0]);
- echo elgg_view('js/' . $js);
-
+ header("Cache-Control: public");
+ header("Content-Length: " . strlen($return));
+
+ echo $return;
exit;
}