whoops, accidentally posted twice
What I did was to remove the strstr function and replace with the empty() function on those lines because they appear to just be checking to make sure the strings are not blank, hence the error about comparing to empty delimiter. Line 71 uses strstr to compare the password though so don’t mess with that one.
Here’s what I did
line 67 if (empty($_POST[“password”]))
line 74 if (empty($_POST[“push”]))
line 83 if ($appname{‘text_string’} && !empty($appname{‘text_string’})) … and this is the same for the other 3 sections that are similar to this block.