- Posts: 32
- Thank you received: 1
Ask the community, share ideas, and connect with other LimeSurvey users!
Please Log in to join the conversation.
limesurvey\application\helpers\replacements_helper.php
// real survey contact if (isset($thissurvey['admin']) && $thissurvey['admin'] != "") { $surveycontact = sprintf(gT("Please contact %s ( %s ) for further assistance."), $thissurvey['admin'], encodeEmail($thissurvey['adminemail'])); } elseif (Yii::app()->getConfig("siteadminname")) { $surveycontact = sprintf(gT("Please contact %s ( %s ) for further assistance."), Yii::app()->getConfig("siteadminname"), encodeEmail(Yii::app()->getConfig("siteadminemail"))); } else { $surveycontact = ""; }
$surveycontact = ""; // or $surveycontact = "Any message you want to display here";
Please Log in to join the conversation.
Please Log in to join the conversation.