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
Uncaught Error: strcmp(): Argument #1 ($string1) must be of type string, bool given {"exception":"[object] (TypeError(code: 0): strcmp(): Argument #1 ($string1) must be of type string, bool given at /var/.../.../.../.../.../vendor/pdir/contao-survey/src/Resources/contao/elements/ContentSurvey.php:948)
Steps to reproduce
Umfrage erstellen, im Frontend Umfrage aufrufen
Expected behavior
Fehler beheben in ContentSurvey.php
if (0 === strcmp($status, 'finished'))
neu if (0 === strcmp(strval($status), 'finished'))
Screenshots
Environment
Contao 4.13.32, contao_survey 3.5.0, PHP 8.1.25
The text was updated successfully, but these errors were encountered:
Bug description
Uncaught Error: strcmp(): Argument #1 ($string1) must be of type string, bool given {"exception":"[object] (TypeError(code: 0): strcmp(): Argument #1 ($string1) must be of type string, bool given at /var/.../.../.../.../.../vendor/pdir/contao-survey/src/Resources/contao/elements/ContentSurvey.php:948)
Steps to reproduce
Umfrage erstellen, im Frontend Umfrage aufrufen
Expected behavior
Fehler beheben in ContentSurvey.php
if (0 === strcmp($status, 'finished'))
neu if (0 === strcmp(strval($status), 'finished'))
Screenshots
Environment
Contao 4.13.32, contao_survey 3.5.0, PHP 8.1.25
The text was updated successfully, but these errors were encountered: