Skip to content

Commit

Permalink
Fixed issue #15989: Blank page after granting user groups survey perm…
Browse files Browse the repository at this point in the history
…issions.

Missing closing DIV
  • Loading branch information
gabrieljenik committed Aug 19, 2020
1 parent a873090 commit b670b91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/controllers/admin/surveypermission.php
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,7 @@ function surveyright($surveyid)
Yii::app()->request->redirect(Yii::app()->getController()->createUrl('admin/surveypermission/sa/view', array('surveyid'=>$surveyid)));
}
$addsummary .= "<br/><input class='btn btn-default' type=\"submit\" onclick=\"window.open('".$this->getController()->createUrl('admin/surveypermission/sa/view/surveyid/'.$surveyid)."', '_top')\" value=\"".gT("Continue")."\"/>\n";
$addsummary .= "</div></div></div>\n";
$addsummary .= "</div></div></div></div>\n";
$aViewUrls['output'] = $addsummary;
} else {
$this->getController()->error('Access denied');
Expand Down

0 comments on commit b670b91

Please sign in to comment.