You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm receiving the following error:
Deprecated: urlencode(): Passing null to parameter #1 ($string) of type string is deprecated in /path to airmoi_FileMaker/src/FileMaker.php on line 839
It is easily fixed by updating line 839 in FileMaker.php to:
$restParams[] = urlencode($option) . ($value === true || $value == null ? '' : '=' . urlencode($value));
This adds a $value==null check.
The text was updated successfully, but these errors were encountered:
I'm receiving the following error:
Deprecated: urlencode(): Passing null to parameter #1 ($string) of type string is deprecated in /path to airmoi_FileMaker/src/FileMaker.php on line 839
It is easily fixed by updating line 839 in FileMaker.php to:
$restParams[] = urlencode($option) . ($value === true || $value == null ? '' : '=' . urlencode($value));
This adds a $value==null check.
The text was updated successfully, but these errors were encountered: