mirror of
https://github.com/wiosna-dev/limesurvey-api-client.git
synced 2026-03-12 18:11:50 +01:00
Participant has completed survey - fix getting proper information
This commit is contained in:
@@ -199,7 +199,12 @@ class Participant extends BaseItem
|
||||
break;
|
||||
|
||||
case 'completed':
|
||||
$this->completed = 'Y' === trim(strtoupper($value));
|
||||
if ('N' === trim(strtoupper($value))) {
|
||||
$this->completed = false;
|
||||
break;
|
||||
}
|
||||
|
||||
$this->completed = Date::isValidDate($value, true);
|
||||
break;
|
||||
|
||||
case 'usesleft':
|
||||
|
||||
Reference in New Issue
Block a user