πŸ‡ΊπŸ‡ΈUnited States @PaEricksonWaTech

Account created on 10 November 2014, over 9 years ago
#

Recent comments

πŸ‡ΊπŸ‡ΈUnited States PaEricksonWaTech

When trying to install and run I was met with syntax errors on line # 272, 309, 312, 315, 326. All the same thing: missing open paren.

#272
elseif (stripos(!empty($path) ? $path : ''), '=') !== FALSE) {
should be
elseif (stripos((!empty($path) ? $path : ''), '=') !== FALSE) {

the others
return stripos(!empty($l) ? $l : ''), $r) !== FALSE;
should be
return stripos((!empty($l) ? $l : ''), $r) !== FALSE;
etc.

I made these changes to my local and all my errors/warnings went away! This is great, thank you.

Production build 0.69.0 2024