Skip to:
Content

bbPress.org


Ignore:
Timestamp:
01/09/2011 07:49:28 AM (15 years ago)
Author:
johnjamesjacoby
Message:

Introduce _content functions for topics and replies. Introduce our own allowed_tags for handling HTML. Add nofollow to links in content. Properly sanitize topic and reply slugs. Fixes #1426, #1389, #1411. Props GautamGupta via Google Code-in

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/plugin/bbp-admin/bbp-admin.php

    r2777 r2780  
    10851085     * @param array $actions Actions
    10861086     * @param array $topic Topic object
    1087      * @uses the_content() To output topic content
     1087     * @uses bbp_topic_content() To output topic content
    10881088     * @uses bbp_get_topic_permalink() To get the topic link
    10891089     * @uses bbp_get_topic_title() To get the topic title
     
    11071107            unset( $actions['inline hide-if-no-js'] );
    11081108
    1109             the_content();
     1109            bbp_topic_content();
    11101110
    11111111            // Show view link if it's not set, the topic is trashed and the user can view trashed topics
     
    14171417     * @param array $actions Actions
    14181418     * @param array $reply Reply object
    1419      * @uses the_content() To output reply content
     1419     * @uses bbp_reply_content() To output reply content
    14201420     * @uses bbp_get_reply_permalink() To get the reply link
    14211421     * @uses bbp_get_reply_title() To get the reply title
     
    14401440                $actions['view'] = '<a href="' . bbp_get_reply_permalink( $reply->ID ) . '" title="' . esc_attr( sprintf( __( 'View &#8220;%s&#8221;', 'bbpress' ), bbp_get_reply_title( $reply->ID ) ) ) . '" rel="permalink">' . __( 'View', 'bbpress' ) . '</a>';
    14411441
    1442             the_content();
     1442            bbp_reply_content();
    14431443
    14441444            // Only show the actions if the user is capable of viewing them
     
    15991599                ?>
    16001600
    1601                 <td class="first b b-topic_tags"><span class="total-count"><?php echo $num; ?></a></td>
     1601                <td class="first b b-topic_tags"><span class="total-count"><?php echo $num; ?></span></td>
    16021602                <td class="t topic_tags"><?php echo $text; ?></td>
    16031603
     
    16291629                ?>
    16301630
    1631                 <td class="b b-users"><span class="total-count"><?php echo $num; ?></a></td>
     1631                <td class="b b-users"><span class="total-count"><?php echo $num; ?></span></td>
    16321632                <td class="last t users"><?php echo $text; ?></td>
    16331633
Note: See TracChangeset for help on using the changeset viewer.