sorry, i just noticed something else.. where would I add stripslashes at? When you send a message like, "I'm Billy." it shows up as "I\'m Billy.". I know for other pages on my site I've had to add "stripslashes", but I must not be adding it in the right spot because I get an error when I add it...
I'm guess somewhere here:
<div class="threadpost">
<div class="post"><?php echo apply_filters( 'post_text', apply_filters( 'get_post_text', $the_pm->text ) ); ?></div>
<div class="poststuff"><?php printf( __( 'Sent %s ago', 'bbpm' ), bb_since( $the_pm->date ) ); ?> <a href="<?php echo $the_pm->delete_link; ?>"><?php _e( 'Delete', 'bbpm' ); ?></a> <a href="<?php echo $the_pm->reply_link; ?>" class="reply"><?php _e( 'Reply', 'bbpm' ); ?></a></div>
</div>
I've tried:
<div class="threadpost">
<div class="post"><?php echo stripslashes("apply_filters( 'post_text', apply_filters( 'get_post_text', $the_pm->text ) )"); ?></div>
<div class="poststuff"><?php printf( __( 'Sent %s ago', 'bbpm' ), bb_since( $the_pm->date ) ); ?> <a href="<?php echo $the_pm->delete_link; ?>"><?php _e( 'Delete', 'bbpm' ); ?></a> <a href="<?php echo $the_pm->reply_link; ?>" class="reply"><?php _e( 'Reply', 'bbpm' ); ?></a></div>
</div>