Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
02/09/2009 06:52:51 AM (17 years ago)
Author:
apeatling
Message:

Added nonce security checks to all BuddyPress actions. Fixes #454

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-forums/bp-forums-filters.php

    r927 r1032  
    5151function bp_forums_filter_decode( $content ) {
    5252    $content = str_replace( '/amp/', '&', $content );
    53     $content = html_entity_decode( $content, ENT_COMPAT, "UTF-8" );
     53    $content = @html_entity_decode( $content, ENT_COMPAT, "UTF-8" );
    5454    $content = str_replace( '[', '<', $content );
    5555    $content = str_replace( ']', '>', $content );
Note: See TracChangeset for help on using the changeset viewer.