Skip to content

Commit

Permalink
Fixed issue #8266: Syntax error on click on CPD icon
Browse files Browse the repository at this point in the history
  • Loading branch information
mfaber committed Oct 12, 2013
1 parent 2a6f386 commit 8d34478
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/controllers/admin/participantsaction.php
Expand Up @@ -1309,7 +1309,7 @@ function uploadCSV()
if (!empty($attname)) {
$bData = array('participant_id' => $aData,
'attribute_id' => $attid,
'value' => $writearray[strtolower($attname]));
'value' => $writearray[strtolower($attname)]);
ParticipantAttribute::model()->updateParticipantAttributeValue($bData);
} else {
//If the value is empty, don't write the value
Expand Down

0 comments on commit 8d34478

Please sign in to comment.