Skip to content

Commit

Permalink
allow replies when public access is given
Browse files Browse the repository at this point in the history
close #36
  • Loading branch information
patrickmj committed Apr 27, 2017
1 parent 94756b0 commit 07b1b6b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions views/public/comment.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,7 @@
<p class='comment-flag' <?php if($comment->flagged): ?> style='display:none;'<?php endif;?> ><?php echo __("Flag inappropriate"); ?></p>
<p class='comment-unflag' <?php if(!$comment->flagged): ?>style='display:none;'<?php endif;?> ><?php echo __("Unflag inappropriate"); ?></p>
<?php endif; ?>

<?php if (is_allowed('Commenting_Comment', 'add') || get_option('commenting_allow_public') == 1): ?>
<p class='comment-reply'><?php echo __("Reply"); ?></p>
<?php endif; ?>

0 comments on commit 07b1b6b

Please sign in to comment.