Skip to content

Commit

Permalink
Fixed issue #8321: Export of single response preselects only 255 columns
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Oct 30, 2013
1 parent 907b1e1 commit b4e1c2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/controllers/admin/export.php
Expand Up @@ -189,7 +189,7 @@ public function exportresults()
foreach($aFieldMap as $sFieldName=>$fieldinfo)
{
$sCode=viewHelper::getFieldCode($fieldinfo);
$aFields[$sCode]=$sCode.' - '.htmlspecialchars(ellipsize(html_entity_decode(viewHelper::getFieldText($fieldinfo)),30,.6,'...'));
$aFields[$sFieldName]=$sCode.' - '.htmlspecialchars(ellipsize(html_entity_decode(viewHelper::getFieldText($fieldinfo)),30,.6,'...'));
}

$data['SingleResponse']=(int)returnGlobal('id');
Expand Down

0 comments on commit b4e1c2a

Please sign in to comment.