- Posts: 16
- Thank you received: 3
Ask the community, share ideas, and connect with other LimeSurvey users!
/* AT LINE 1165 - before switch ($qtype) statement: */ $parent_title = $qtitle; // .... /* AT LINE 1459 - before return of buildOutputList()*/ if (in_array($qtype, ['A','C','F' ] )){ // for these question types - show parent and subquestion text $qquestion = rtrim($qquestion, $linefeed);// trim the linefeed that's been added $qquestion .= ((trim($qquestion==''))? ucfirst($parent_title) : null) . ": " .$atext . $linefeed; }