X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fmain.inc;h=be058ed9293306e1fa933b09b09a1df1b8dd218d;hb=7e6e0807990447d2977b970c3a0fd28dc9250194;hp=7b37055abc60e317c9f64a413eed964d34607ec9;hpb=95ff74b5722826544743a01daf527aa3c9efe11a;p=fa-stable.git diff --git a/includes/main.inc b/includes/main.inc index 7b37055a..be058ed9 100644 --- a/includes/main.inc +++ b/includes/main.inc @@ -179,6 +179,9 @@ function js_compress($sJS) //loop through line's characters and take out any literal strings, replace them with ___i___ where i is the index of this string $len = strlen($line); + if (version_compare(PHP_VERSION, '7.0.0') >= 0) // uninitialized string offser error fix. @Braath Waate + $line .= chr(32); + for($j=0;$j<$len;$j++) { $c = $line[$j]; // this is _really_ faster than subst