Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/24/2011 02:59:19 AM (15 years ago)
Author:
boonebgorges
Message:

Don't let non-logged-in users see the New Topic and New Reply subnav items in group forums. Fixes #3610. Props r-a-y

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-themes/bp-default/groups/single/forum/topic.php

    r5080 r5184  
    77                <div class="item-list-tabs no-ajax" id="subnav" role="navigation">
    88                        <ul>
    9                                 <li>
    10                                         <a href="<?php bp_forum_topic_new_reply_link() ?>" class="new-reply-link"><?php _e( 'New Reply', 'buddypress' ) ?></a>
    11                                 </li>
     9                                <?php if ( is_user_logged_in() ) : ?>
     10
     11                                        <li>
     12                                                <a href="<?php bp_forum_topic_new_reply_link() ?>" class="new-reply-link"><?php _e( 'New Reply', 'buddypress' ) ?></a>
     13                                        </li>
     14
     15                                <?php endif; ?>
    1216
    1317                                <?php if ( bp_forums_has_directory() ) : ?>
Note: See TracChangeset for help on using the changeset viewer.