diff options
author | Christian Schneider | 2019-09-02 17:14:43 +0200 |
---|---|---|
committer | Christian Schneider | 2019-09-02 17:14:43 +0200 |
commit | 2b13737e9299317c865f72f4a276ea0b733c4f5f (patch) | |
tree | b800cc0e889d976ba0957e168df45622aee24ee2 /itjs.class | |
parent | b422951038a66713c18ec4d24ce71a13dd0756a6 (diff) | |
download | itools-2b13737e9299317c865f72f4a276ea0b733c4f5f.tar.gz itools-2b13737e9299317c865f72f4a276ea0b733c4f5f.tar.bz2 itools-2b13737e9299317c865f72f4a276ea0b733c4f5f.zip |
Make itools a bit stricter, new PHP versions start to enforce more declarations
Diffstat (limited to 'itjs.class')
-rw-r--r-- | itjs.class | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -195,7 +195,7 @@ static function checksum($fnlist, $p = array()) /** * Convert url or TRUSTED local path to url that triggers far future expire by appending c=checksum */ -function crcurl($url, $p = array()) +static function crcurl($url, $p = array()) { if (it::match('^(http|//)', $url)) # remote url, must fetch to crc list($fn, $short_expire) = array(it_url::get_cache(array('url' => $url, 'maxage' => 3600, 'id' => "itjs_crcurl") + $p), false); |