Browse Source

Merge pull request #1211 from jloguercio/1.11.x

Fix course survey confirmation language - Refs #8255
José Loguercio 8 years ago
parent
commit
599bc75755
1 changed files with 1 additions and 1 deletions
  1. 1 1
      main/survey/create_new_survey.php

+ 1 - 1
main/survey/create_new_survey.php

@@ -100,7 +100,7 @@ if ($_GET['action'] == 'edit' && isset($survey_id) && is_numeric($survey_id)) {
 $form = new FormValidator(
     'survey',
     'post',
-    api_get_self().'?action='.Security::remove_XSS($_GET['action']).'&survey_id='.$survey_id
+    api_get_self().'?action='.Security::remove_XSS($_GET['action']).'&survey_id='.$survey_id. '&' . api_get_cidreq()
 );
 
 $form->addElement('header', $tool_name);