Skip to content

Commit

Permalink
Fixed issue #9311: Error on DB upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Oct 20, 2014
1 parent b226160 commit 72efcaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/helpers/update/updatedb_helper.php
Expand Up @@ -1298,8 +1298,8 @@ function upgradeTokenTables178()
{
foreach ( $surveyidresult as $sTableName )
{
$oSchema=$oSchema->getTable($sTableName);
foreach ($oSchema->columnNames as $sColumnName)
$oTableSchema=$oSchema->getTable($sTableName);
foreach ($oTableSchema->columnNames as $sColumnName)
{
if (strpos($sColumnName,'attribute_')===0)
{
Expand Down

0 comments on commit 72efcaa

Please sign in to comment.