Skip to content

Commit

Permalink
Fixed issue #8938: Showing inline text of text fields throws JS/AJAX …
Browse files Browse the repository at this point in the history
…error
  • Loading branch information
c-schmitz committed Apr 15, 2014
1 parent 48d26c3 commit 34ae4f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/controllers/admin/statistics.php
Expand Up @@ -496,13 +496,13 @@ function listcolumn($surveyid, $column, $sortby="", $sortmethod="", $sorttype=""
{
Yii::app()->loadHelper('admin/statistics');
$helper = new statistics_helper();
$output = $helper->_listcolumn($surveyid, $column, $sortby, $sortmethod, $sorttype);
$aData['data']=$helper->_listcolumn($surveyid, $column, $sortby, $sortmethod, $sorttype);
$aData['surveyid']=$surveyid;
$aData['data']=$output;
$aData['column']=$column;
$aData['sortby']=$sortby;
$aData['sortmethod']=$sortmethod;
$aData['sorttype']=$sorttype;
App()->getClientScript()->reset();
$this->getController()->render('export/statistics_browse_view', $aData);
}

Expand Down

0 comments on commit 34ae4f7

Please sign in to comment.