Skip to content

Commit

Permalink
Merge branch '2.06lts' of https://github.com/LimeSurvey/LimeSurvey.git
Browse files Browse the repository at this point in the history
…into 2.06_SondagesPro

# Conflicts:
#	application/config/version.php
  • Loading branch information
Shnoulle committed Dec 9, 2016
2 parents 4124406 + 6358111 commit 8ed783d
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
4 changes: 2 additions & 2 deletions application/config/version.php
Expand Up @@ -11,9 +11,9 @@
* See COPYRIGHT.php for copyright notices and details.
*/

$config['versionnumber'] = "2.6.1 SondagesPro";
$config['versionnumber'] = "2.6.2 SondagesPro";
$config['dbversionnumber'] = 184;
$config['buildnumber'] = '1.1.2';
$config['buildnumber'] = '1.2.0';
$config['updatable'] = false;

return $config;
10 changes: 10 additions & 0 deletions application/core/LSYii_Controller.php
Expand Up @@ -174,4 +174,14 @@ public function createAbsoluteUrl($route,$params=array(),$schema='',$ampersand='
else
return parent::createAbsoluteUrl($route,$params,$schema,$ampersand);
}


/**
* Loads page states from a hidden input.
* @return array the loaded page states
*/
protected function loadPageStates()
{
return array();
}
}
5 changes: 4 additions & 1 deletion application/helpers/frontend_helper.php
Expand Up @@ -1171,6 +1171,7 @@ function buildsurveysession($surveyid,$preview=false)
}
}


//RESET ALL THE SESSION VARIABLES AND START AGAIN
unset($_SESSION['survey_'.$surveyid]['grouplist']);
unset($_SESSION['survey_'.$surveyid]['fieldarray']);
Expand All @@ -1179,7 +1180,9 @@ function buildsurveysession($surveyid,$preview=false)
unset($_SESSION['survey_'.$surveyid]['fieldmap-' . $surveyid . '-randMaster']);
unset($_SESSION['survey_'.$surveyid]['groupReMap']);
$_SESSION['survey_'.$surveyid]['fieldnamesInfo'] = Array();

// Generate Session ID
Yii:app()->session->regenerateID(true);

// Multi lingual support order : by REQUEST, if not by Token->language else by survey default language
if (returnGlobal('lang',true))
{
Expand Down
3 changes: 3 additions & 0 deletions docs/release_notes.txt
Expand Up @@ -59,6 +59,9 @@ Thank you to everyone who helped with this new release!
CHANGE LOG
------------------------------------------------------

Changes from 2.06LTS (build 161024) to 2.6.2LTS (build 161206) Dez 6, 2016
-Fixed issue #11606: Date/Time filled does not record the answer (Olle Haerstedt)
-Fixed issue: [security] Possible session fixation on survey entry with token (Carsten Schmitz)

Changes from 2.06LTS (build 160801) to 2.6.1LTS (build 161024) Oct 24, 2016
-Fixed issue #11455: MapQuest discontinued their free services (Markus Flür)
Expand Down

0 comments on commit 8ed783d

Please sign in to comment.