Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Anonymous posting


bbpressfriend
Member

@bbpressfriend

Replace (in anonymous.php):

add_action('bb_new_post', 'bb_anonymous_posting_add_post_poster');

function bb_anonymous_posting_add_post_poster($post_id) {

global $bbdb;

$name = bb_get_current_user_info( 'name' );

$bbdb->query("UPDATE $bbdb->posts SET poster_name = '$name' WHERE post_id = '$post_id'");

}

with

add_action('bb_new_post', 'bb_anonymous_posting_add_post_poster');

function bb_anonymous_posting_add_post_poster($post_id) {

global $bbdb;

$name = bb_get_current_user_info( 'name' );

$bbdb->query("UPDATE $bbdb->posts SET poster_name = '$name' WHERE post_id = '$post_id'");

$bbdb->query("UPDATE $bbdb->posts SET post_status = '1' WHERE post_id = '$post_id'");

}

Now, new Posts are automaticly marked as spam. You can go to your admin area and undelete them (if its not spam) :D

sorry for my bad english, im german :)

Skip to toolbar