From 2c5b6fd862894d5fe6118942460fdcdb10605e49 Mon Sep 17 00:00:00 2001 From: Urban Müller Date: Fri, 26 Sep 2014 17:04:56 +0200 Subject: ignore unavailable files like elsewhere --- itjs.class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/itjs.class b/itjs.class index f73698d..1a8f4a0 100644 --- a/itjs.class +++ b/itjs.class @@ -191,7 +191,7 @@ static function checksum($fnlist) $filenames = array_merge(is_array($fnlist) ? $fnlist : itjs::filenames($fnlist), array("/www/lib.search.ch/var/jquery-ui/dist/minified/jquery.ui.core.min.js", "/www/lib.search.ch/var/jquery/dist/jquery.min.js")); # jquery files included by lib/jquery.js $key = "itjs_" . md5(join("", it::map('"$v" . @filemtime("$v")', $filenames))); - if (time() - max(array_map('filemtime', $filenames)) < 60) + if (time() - max(@array_map('filemtime', $filenames)) < 60) return "-"; # trigger short expire, our file may not yet be up to date on other slaves else return it_cache::get($key) ?: it_cache::put($key, substr(md5(self::filecontents($filenames, false)), 0, 10), array('ttl' => 60)); -- cgit v1.2.3