summaryrefslogtreecommitdiffstats
path: root/application/helpers/filebin_helper.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/helpers/filebin_helper.php')
-rw-r--r--application/helpers/filebin_helper.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/application/helpers/filebin_helper.php b/application/helpers/filebin_helper.php
index 8db605cfd..7adab7279 100644
--- a/application/helpers/filebin_helper.php
+++ b/application/helpers/filebin_helper.php
@@ -135,11 +135,10 @@ function link_with_mtime($file)
return $link;
}
-function main_min_js_name()
+function js_cache_buster()
{
- $files = glob(FCPATH . 'data/js/main.min.*.js');
- $filename = basename(empty($files) ? 'MAIN_NOT_MINIFIED' : end($files));
- return str_replace('.js', '', $filename);
+ $minified_main = FCPATH.'/data/js/main.min.js';
+ return file_exists($minified_main) ? filemtime($minified_main) : time();
}
function handle_etag($etag)