Skip to content

Commit

Permalink
Dev Reduced memory usage at token export
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Apr 8, 2013
1 parent 05b1d39 commit b3a6ec1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion application/helpers/export_helper.php
Expand Up @@ -1764,10 +1764,11 @@ function tokensExport($iSurveyID)
}
$tokenoutput = substr($tokenoutput,0,-1); // remove last comma
$tokenoutput .= "\n";
echo $tokenoutput;
$tokenoutput='';

$aExportedTokens[] = $brow['tid'];
}
echo $tokenoutput;

if (Yii::app()->request->getPost('tokendeleteexported') && !empty($aExportedTokens))
{
Expand Down

0 comments on commit b3a6ec1

Please sign in to comment.