π | Views Json Source | Exposed filters causes Deprecated function: stripos(): Passing null to parameter #1 ($haystack) of type string is deprecated
πΊπΈUnited States PaEricksonWaTech
I installed the updated patch. It resolved all issues I was having. Thank you.
π | Views Json Source | Exposed filters causes Deprecated function: stripos(): Passing null to parameter #1 ($haystack) of type string is deprecated
πΊπΈ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.
π | Views Json Source | Exposed filters causes Deprecated function: stripos(): Passing null to parameter #1 ($haystack) of type string is deprecated
πΊπΈUnited States PaEricksonWaTech
PaEricksonWaTech β created an issue.