Skip to content

Commit

Permalink
Fixed issue: Cannot load previously saved response to resume, instead…
Browse files Browse the repository at this point in the history
… the message "There is no matching saved response" is shown after entering identifier and password
  • Loading branch information
c-schmitz committed Aug 16, 2022
1 parent 947a078 commit 213e450
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions application/models/SurveyDynamic.php
Expand Up @@ -91,9 +91,9 @@ public function relations()
'saved_control' => array(self::HAS_ONE, 'SavedControl', array('srid' => 'id'), 'condition' => ('sid = ' . self::$sid))
);
} else {
return array(
'saved_control' => array(self::HAS_ONE, 'SavedControl', array('srid' => 'id'), 'condition' => ('sid = ' . self::$sid))
);
return array(
'saved_control' => array(self::HAS_ONE, 'SavedControl', array('srid' => 'id'), 'condition' => ('sid = ' . self::$sid))
);
}
}

Expand Down

0 comments on commit 213e450

Please sign in to comment.