QnA - Don't output question-description if it's empty; Do output question-closed msg if question is closed
This commit is contained in:
parent
9d18b57812
commit
53c653038d
@ -214,9 +214,18 @@ class QnA_Question extends Managed_DataObject
|
|||||||
$notice = $question->getNotice();
|
$notice = $question->getNotice();
|
||||||
|
|
||||||
$out = new XMLStringer();
|
$out = new XMLStringer();
|
||||||
$out->elementStart('span', 'question_description');
|
|
||||||
$out->raw(QnAPlugin::shorten($question->description, $notice));
|
if (!empty($question->description)) {
|
||||||
$out->elementEnd('span');
|
$out->elementStart('span', 'question-description');
|
||||||
|
$out->raw(QnAPlugin::shorten($question->description, $notice));
|
||||||
|
$out->elementEnd('span');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!empty($question->closed)) {
|
||||||
|
$out->elementStart('span', 'question-closed');
|
||||||
|
$out->text(_m('This question is closed.'));
|
||||||
|
$out->elementEnd('span');
|
||||||
|
}
|
||||||
|
|
||||||
return $out->getString();
|
return $out->getString();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user