The LimeSurvey crew have not merged the changes to the release version yet. To fill the gap I took the changes and applied them manually. Here is a step by step:
1. In your favorite editor (for example, notepad) open .../application/helpers/common_helper.php
2. Find "if (strcmp($description,$qentry) !=0 ||" (this should be at line 6270)
3. Replace the following:
if (strcmp($description,$qentry['description']) !=0 ||
strcmp($gpname,$qentry['group_name']) !=0)
{
// Update Fields
$data = array(
'description' => $description,
'group_name' => $gpname
);
$where = array(
'gid' => $gid,
'language' => $language
);
Groups::model()->update($data,$where);
} // Enf if modified
} // end while qentrywith the following (this is the changed code from LimeSurvey):
if (strcmp($description,$qentry['description']) !=0 || strcmp($gpname,$qentry['group_name']) !=0) {
$where = array(
'gid' => $gid,
'language' => $language
);
$oGroup = Groups::model()->findByAttributes($where);
$oGroup->description= $description;
$oGroup->group_name= $gpname;
$oGroup->save();
} // Enf if modified
} // end while qentry
Once you have the code change, try your import again.