Skip to content

Commit

Permalink
Fixed issue: Survey gets into a state where it seems to be active but…
Browse files Browse the repository at this point in the history
… isn't - to fix this run integrity check

Partially reverting issue 15195.
Similar to commit dbc22fc
  • Loading branch information
gabrieljenik committed Nov 8, 2022
1 parent 7d0616b commit 52a6779
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/models/Survey.php
Expand Up @@ -498,7 +498,7 @@ public function rules()
array('expires', 'date','format' => ['yyyy-M-d H:m:s.???','yyyy-M-d H:m:s','yyyy-M-d H:m'],'allowEmpty' => true),
array('startdate', 'date','format' => ['yyyy-M-d H:m:s.???','yyyy-M-d H:m:s','yyyy-M-d H:m'],'allowEmpty' => true),
array('datecreated', 'date','format' => ['yyyy-M-d H:m:s.???','yyyy-M-d H:m:s','yyyy-M-d H:m'],'allowEmpty' => true),
array('expires', 'checkExpireAfterStart'),
//array('expires', 'checkExpireAfterStart'),
);
}

Expand Down

0 comments on commit 52a6779

Please sign in to comment.