Skip to:
Content

bbPress.org

Changeset 3459


Ignore:
Timestamp:
08/26/2011 10:05:08 PM (14 years ago)
Author:
johnjamesjacoby
Message:

Use disabled() in topic and reply forms. Remove duplicate breadcrumbs on single reply edits. Fixes #1608. Props GautamGupta.

Location:
branches/plugin/bbp-themes/bbp-twentyten
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/plugin/bbp-themes/bbp-twentyten/bbpress/form-reply.php

    r3455 r3459  
    7373                        <p>
    7474                            <label for="bbp_topic_tags"><?php _e( 'Tags:', 'bbpress' ); ?></label><br />
    75                             <input type="text" value="<?php bbp_form_topic_tags(); ?>" tabindex="<?php bbp_tab_index(); ?>" size="40" name="bbp_topic_tags" id="bbp_topic_tags" <?php if ( bbp_is_topic_spam() ) : ?>disabled="disabled"<?php endif; ?> />
     75                            <input type="text" value="<?php bbp_form_topic_tags(); ?>" tabindex="<?php bbp_tab_index(); ?>" size="40" name="bbp_topic_tags" id="bbp_topic_tags" <?php disabled( bbp_is_topic_spam() ); ?> />
    7676                        </p>
    7777
  • branches/plugin/bbp-themes/bbp-twentyten/bbpress/form-topic.php

    r3455 r3459  
    9999                        <p>
    100100                            <label for="bbp_topic_tags"><?php _e( 'Topic Tags:', 'bbpress' ); ?></label><br />
    101                             <input type="text" value="<?php bbp_form_topic_tags(); ?>" tabindex="<?php bbp_tab_index(); ?>" size="40" name="bbp_topic_tags" id="bbp_topic_tags" <?php if ( bbp_is_topic_spam() ) : ?>disabled="disabled"<?php endif; ?> />
     101                            <input type="text" value="<?php bbp_form_topic_tags(); ?>" tabindex="<?php bbp_tab_index(); ?>" size="40" name="bbp_topic_tags" id="bbp_topic_tags" <?php disabled( bbp_is_topic_spam() ); ?> />
    102102                        </p>
    103103
  • branches/plugin/bbp-themes/bbp-twentyten/single-reply-edit.php

    r3331 r3459  
    2121                        <div class="entry-content">
    2222
    23                             <?php bbp_breadcrumb(); ?>
    24 
    2523                            <?php bbp_get_template_part( 'bbpress/form', 'reply' ); ?>
    2624
Note: See TracChangeset for help on using the changeset viewer.