Skip to content

Commit

Permalink
Fixed issue #8406: Upgrade from 1.92 yields Property "Tokens_dynamic.…
Browse files Browse the repository at this point in the history
…blacklisted" is not defined.
  • Loading branch information
c-schmitz committed Nov 26, 2013
1 parent e985aa7 commit 71d6d1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/helpers/update/updatedb_helper.php
Expand Up @@ -672,7 +672,6 @@ function db_upgrade_all($oldversion) {
addColumn('{{question_attributes}}','language',"{$sVarchar}(20)");

upgradeQuestionAttributes148();
upgradeTokens148();
fixSubquestions();
Yii::app()->db->createCommand()->update('{{settings_global}}',array('stg_value'=>148),"stg_name='DBVersion'");
}
Expand Down Expand Up @@ -1044,6 +1043,7 @@ function db_upgrade_all($oldversion) {

if ($oldversion < 164)
{
upgradeTokens148(); // this should have bee done in 148 - that's why it is named this way
// fix survey tables for missing or incorrect token field
upgradeSurveyTables164();
Yii::app()->db->createCommand()->update('{{settings_global}}',array('stg_value'=>164),"stg_name='DBVersion'");
Expand Down

0 comments on commit 71d6d1c

Please sign in to comment.