Skip to content
Snippets Groups Projects
Commit f3a07cca authored by Jared Hancock's avatar Jared Hancock
Browse files

i18n: Oops hide erroneous "published" status for internal FAQs

parent 9c9bfae1
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@ $category=$faq->getCategory();
<span class="faded">(<?php echo $category->isPublic()?__('Public'):__('Internal'); ?>)</span>
</div>
<div class="pull-left" style="width:700px;padding-top:2px;">
<strong style="font-size:16px;"><?php echo $faq->getQuestion() ?></strong>&nbsp;&nbsp;<span class="faded"><?php echo '('.$faq->isPublished()?__('Published').')':''; ?></span>
<strong style="font-size:16px;"><?php echo $faq->getQuestion() ?></strong>&nbsp;&nbsp;<span class="faded"><?php echo $faq->isPublished() ? ('('.__('Published').')'):''; ?></span>
</div>
<div class="pull-right flush-right" style="padding-top:5px;padding-right:5px;">
<?php
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment