Skip to content

Commit

Permalink
Dev: Merge remote-tracking branch 'origin/master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisGac committed Jun 23, 2017
2 parents 8a59df4 + fbabb24 commit dfbc4ef
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 4 deletions.
2 changes: 1 addition & 1 deletion application/config/version.php
Expand Up @@ -16,5 +16,5 @@
$config['dbversionnumber'] = 292;
$config['buildnumber'] = '';
$config['updatable'] = true;
$config['assetsversionnumber'] = '2660';
$config['assetsversionnumber'] = '2670';
return $config;
2 changes: 1 addition & 1 deletion application/controllers/admin/export.php
Expand Up @@ -1370,7 +1370,7 @@ public function quexml($iSurveyID)
*/
private function _exportPrintableHtmls($iSurveyID,$readFile = true){
$oSurvey = Survey::model()->findByPk($iSurveyID);
$assetsDir = Template::getTemplateURL($oSurvey->template);
$assetsDir = substr(Template::getTemplateURL($oSurvey->template),1);
$fullAssetsDir = Template::getTemplatePath($oSurvey->template);
$aLanguages = $oSurvey->getAllLanguages();

Expand Down
2 changes: 1 addition & 1 deletion application/controllers/admin/tokens.php
Expand Up @@ -116,7 +116,7 @@ public function bounceprocessing($iSurveyId)
$hostencryption = strtoupper($thissurvey['bounceaccountencryption']);
}

list($hostname, $port) = explode(':', $hostname); // deprecated: split(':', $hostname);
@list($hostname, $port) = explode(':', $hostname);

if (empty($port))
{
Expand Down
Expand Up @@ -57,7 +57,7 @@

$content = $survey->localizedTitle;
$content .= "<span class='pull-right clearfix'>"
."<span href='#' class='fa fa-question-circle' onclick='return false;' data-html='true' data-toggle=\"popover\" title=\"".gT("Survey information")."\" data-content='".$tooltips."'>&nbsp;</span>"
."&nbsp;<span href='#' class='fa fa-question-circle' onclick='return false;' data-html='true' data-toggle=\"popover\" title=\"".gT("Survey information")."\" data-content='".$tooltips."'></span>"
."</span>";

$list .= CHtml::link(
Expand Down
16 changes: 16 additions & 0 deletions docs/release_notes.txt
Expand Up @@ -35,6 +35,22 @@ Thank you to everyone who helped with this new release!
CHANGE LOG
------------------------------------------------------

Changes from 2.66.0 (build 170619) to 2.67.0 (build 170622) June 22, 2017
-New feature: Opting out of a survey requires a one-click confirmation (Carsten Schmitz)
-Fixed issue #12476: Quicktranslation tabs not working (markusfluer)
-Fixed issue: convertDateTimeFormat gets wrong fromdateformat in survey list (Olle Haerstedt)
#Updated translation: Catalan by qualitatuvic
#Updated translation: Chinese (Simplified) by yanglaw
#Updated translation: French (France) by arnaud21
#Updated translation: Hungarian by kkd
#Updated translation: Japanese by nomoto
#Updated translation: Polish by elissa
#Updated translation: Polish (Informal) by elissa
#Updated translation: Portuguese (Brazil) by mauriciofurtado
#Updated translation: Portuguese (Portugal) by samarta
#Updated translation: Turkish by kayazeren


Changes from 2.65.6 (build 170615) to 2.66.0 (build 170619) June 19, 2017
-New feature #12468: EM placeholder {SID} in email templates (Denis Chenu)
-Fixed issue #12101: Placeholder "TOKEN" does not work in Equation question (Denis Chenu)
Expand Down

0 comments on commit dfbc4ef

Please sign in to comment.