Quote:
Originally Posted by sweede
That's done in the newthread_start plugin.
Look around line 126 in the plugin code
$comment_boxes .= '</td><td valign="top">';
changing it to
$comment_boxes .= '<br /></td><td valign="top">';
|
Thank you, but what this does is adding a line break only in the form itself and not at the actual preview. Where exactly do you build the questions and answers variable that is ultimately inserted into the database as "the message"?
Edit*
Actually I think I found out something, by editing line 140 to look like this:
PHP Code:
eval('$guild_app_answer_qa_message .= "' . fetch_template('App_Question_Answer') . '<br />' . '";');
I get the preview to print <br /> after each of the answers, the problem now seems to be the fact that in the process of inserting the message into the database the message is stripped of any html code... or something, what do you think? ^^