Skip to content

Commit

Permalink
Fixed issue #7274: Panel integration is not saving parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Feb 7, 2013
1 parent 6cd9ca6 commit 2f56e91
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions application/controllers/admin/surveyadmin.php
Expand Up @@ -1446,11 +1446,10 @@ function getUrlParamsJSON($iSurveyID)
$i = 0;
$clang = $this->getController()->lang;
$aData = new stdClass();

foreach ($oResult as $oRow)
{
$aData->rows[$i]['id'] = $oRow['id'];
if ($oRow['question'] != '')
if (!is_null($oRow['question']))
{
$oRow['title'] .= ': ' . ellipsize(flattenText($oRow['question'], false, true), 43, .70);
}
Expand Down

0 comments on commit 2f56e91

Please sign in to comment.