Skip to content

Commit

Permalink
Dev: fix arry to string conversion in publix survey list
Browse files Browse the repository at this point in the history
  • Loading branch information
Shnoulle committed Nov 22, 2014
1 parent d069091 commit 8d62a0f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions application/views/surveys/publicSurveyList.php
Expand Up @@ -33,12 +33,12 @@
}
$data['surveylist'] = array(
"nosid"=> "",
"contact"=> sprintf(gT("Please contact %s ( %s ) for further assistance."), array(
"contact"=> sprintf(gT("Please contact %s ( %s ) for further assistance."),
Yii::app()->getConfig("siteadminname"),
encodeEmail(Yii::app()->getConfig("siteadminemail"))
)),
),
"listheading"=> gT("The following surveys are available:"),
"list"=> $list
"list"=> $list,
);
$data['templatedir'] = getTemplatePath(Yii::app()->getConfig("defaulttemplate"));
$data['templateurl'] = getTemplateURL(Yii::app()->getConfig("defaulttemplate"))."/";
Expand Down

0 comments on commit 8d62a0f

Please sign in to comment.