Skip to content

Commit

Permalink
Dev Survey navigator now goes to question update instead of question …
Browse files Browse the repository at this point in the history
…view.
  • Loading branch information
SamMousa committed May 1, 2015
1 parent 2f213e6 commit 994f326
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/views/global/surveyNavigator.php
Expand Up @@ -12,7 +12,7 @@
foreach ($group->questions as $question) {
$items[] = [
'label' => "{$question->title} - {$question->question}",
'url' => ['questions/view', 'id' => $question->qid],
'url' => ['questions/update', 'id' => $question->qid],
'class' => 'question',
'active' => isset($this->question) && $this->question->qid === $question->qid
];
Expand Down

0 comments on commit 994f326

Please sign in to comment.