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
See https://processwire.com/talk/topic/31018-request-info-panel-problem/ for description of problem.
In certain circumstances, such as those described in the post, the error: ErrorException: trim(): Passing null to parameter #1 ($string) of type string is deprecated in /var/www/html/wire/core/DatabaseQuery.php:468
occurs.
This can be simply fixed by changing line 468 to $curValue[] = $value ? trim($value, ", ") : '';
The text was updated successfully, but these errors were encountered:
See https://processwire.com/talk/topic/31018-request-info-panel-problem/ for description of problem.
In certain circumstances, such as those described in the post, the error:
ErrorException: trim(): Passing null to parameter #1 ($string) of type string is deprecated in /var/www/html/wire/core/DatabaseQuery.php:468
occurs.
This can be simply fixed by changing line 468 to
$curValue[] = $value ? trim($value, ", ") : '';
The text was updated successfully, but these errors were encountered: