Löschen';
$question['Question'] = str_replace("\n", '
', $question['Question']);
}
foreach ($answered_questions as &$question) {
$question['Question'] = str_replace("\n", '
', $question['Question']);
$question['Answer'] = str_replace("\n", '
', $question['Answer']);
$question['actions'] = 'Löschen';
}
return page(array(
msg(),
'
' . _("Open questions") . '
',
table(array(
'Question' => _("Question"),
'actions' => ""
), $open_questions),
'' . _("Answered questions") . '
',
table(array(
'Question' => _("Question"),
'answer_user' => _("Answered by"),
'Answer' => _("Answer"),
'actions' => ""
), $answered_questions),
'' . _("Ask an archangel") . '
',
form(array(
form_textarea('question', _("Your Question:"), ""),
form_submit('submit', _("Save"))
), $ask_action)
));
}
?>