Skip to content

Commit

Permalink
Fixed #7116: Impossible to generate tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
mennodekker committed Dec 24, 2012
1 parent a57dc0f commit 934754b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/controllers/admin/tokens.php
Expand Up @@ -2062,7 +2062,7 @@ function tokenify($iSurveyId)
'title' => $clang->gT("Create tokens"),
'message' => $clang->gT("Clicking 'Yes' will generate tokens for all those in this token list that have not been issued one. Continue?") . "<br /><br />\n"
. "<input type='submit' value='"
. $clang->gT("Yes") . "' onclick=\"" . convertGETtoPOST($this->getController()->createUrl("admin/tokens/sa/tokenify/surveyid/$iSurveyId") . "?ok=Y") . "\" />\n"
. $clang->gT("Yes") . "' onclick=\"" . convertGETtoPOST($this->getController()->createUrl("admin/tokens/sa/tokenify/surveyid/$iSurveyId", array('ok'=>'Y'))) . "\" />\n"
. "<input type='submit' value='"
. $clang->gT("No") . "' onclick=\"window.open('" . $this->getController()->createUrl("admin/tokens/sa/index/surveyid/$iSurveyId") . "', '_top')\" />\n"
. "<br />\n"
Expand Down

1 comment on commit 934754b

@mennodekker
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Still need to check the other occurences of this get to post as it does not work well with get style urls

Please sign in to comment.