Skip to content

Commit

Permalink
Fixed issue #06419 - Failed to reproduce statistic with large survey …
Browse files Browse the repository at this point in the history
…in Yii Branch (missing semi-colon)
  • Loading branch information
jcleeland committed Aug 3, 2012
1 parent 5bc0e7f commit 3cf9583
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/helpers/admin/statistics_helper.php
Expand Up @@ -3255,7 +3255,7 @@ function generate_statistics($surveyid, $allfields, $q2show='all', $usegraph=0,
Yii::import('application.libraries.admin.pear.Spreadsheet.Excel.Xlswriter', true);
if($pdfOutput=='F')
{
$sFileName = $tempdir.'/statistic-survey'.$surveyid.'.xls'
$sFileName = $tempdir.'/statistic-survey'.$surveyid.'.xls';
$workbook = new Xlswriter($sFileName);
}
else
Expand Down

0 comments on commit 3cf9583

Please sign in to comment.