diff options
author | Christian Schneider | 2015-02-10 16:31:38 +0100 |
---|---|---|
committer | Christian Schneider | 2015-02-10 16:31:38 +0100 |
commit | 63ec357b2f300c48d4c90d7d6209b964c2caa3dd (patch) | |
tree | 6cade258a1c0c9362a5931a0dbc6a8c51d33812d /itjs.class | |
parent | 9e350531328e67bd5b0c0425f1a2619a08456f6e (diff) | |
download | itools-63ec357b2f300c48d4c90d7d6209b964c2caa3dd.tar.gz itools-63ec357b2f300c48d4c90d7d6209b964c2caa3dd.tar.bz2 itools-63ec357b2f300c48d4c90d7d6209b964c2caa3dd.zip |
Make ITools standard PHP 5.3 compatible (syntax patch, no short array syntax)
Diffstat (limited to 'itjs.class')
-rw-r--r-- | itjs.class | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -211,7 +211,7 @@ function crcurl($url) else $fn = ($m = it::match("^//(\w+)(/.*)", $url)) ? "/www/$m[0].search.ch" . $m[1] : $GLOBALS['ULTRAHOME'] . $url; - return it::match('#', $url) ? U(trim($url, "#")) : U($url, array('c' => self::checksum([$fn]))); + return it::match('#', $url) ? U(trim($url, "#")) : U($url, array('c' => self::checksum(array($fn)))); } } |