Skip to content

Commit

Permalink
Fixed issue #17139: Invalid URL in Check integrity
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Mar 22, 2021
1 parent 1415497 commit fdee17d
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions application/controllers/admin/checkintegrity.php
Expand Up @@ -1167,16 +1167,14 @@ protected function checkQuestionOrderDuplicates()
if (!empty($result)) {
foreach ($result as &$info) {
$info['viewSurveyLink'] = Yii::app()->getController()->createUrl(
'admin/survey',
'surveyAdministration/view',
[
'sa' => 'view',
'surveyid' => $info['sid'],
'iSurveyID' => $info['sid']
]
);
$info['viewGroupLink'] = Yii::app()->getController()->createUrl(
'admin/questiongroups',
'questionGroupsAdministration/view',
[
'sa' => 'view',
'surveyid' => $info['sid'],
'gid' => $info['gid']
]
Expand Down

0 comments on commit fdee17d

Please sign in to comment.