Index: bbp-common-functions.php
--- bbp-common-functions.php Base (BASE)
+++ bbp-common-functions.php Locally Modified (Based On LOCAL)
@@ -699,25 +699,23 @@
  * ensure that it is properly set, such as in wp-config.php, for your
  * environment. See {@link http://core.trac.wordpress.org/ticket/9235}
  *
- * If there are any errors, those are directly added to {@link bbPress:errors}
+ * If there are any errors, those are directly added to {@link bbPress::errors}
  *
  * @since bbPress (r2734)
  *
  * @param mixed $args Optional. If no args are there, then $_POST values are
  *                     used.
- * @param bool $is_edit Optional. Is the topic/reply being edited? There are no
- *                       IP checks then.
  * @uses apply_filters() Calls 'bbp_pre_anonymous_post_author_name' with the
  *                        anonymous user name
  * @uses apply_filters() Calls 'bbp_pre_anonymous_post_author_email' with the
  *                        anonymous user email
- * @uses apply_filters() Calls 'bbp_pre_anonymous_post_author_ip' with the
- *                        anonymous user's ip address
  * @uses apply_filters() Calls 'bbp_pre_anonymous_post_author_website' with the
  *                        anonymous user website
+ * @uses apply_filters() Calls 'bbp_pre_anonymous_post_data' with all the
+ *                        anonymous user's data
  * @return bool|array False on errors, values in an array on success
  */
-function bbp_filter_anonymous_post_data( $args = '', $is_edit = false ) {
+function bbp_filter_anonymous_post_data( $args = '' ) {

 	// Assign variables
 	$defaults = array (
@@ -913,8 +911,8 @@
 	$post['user_ua'] = bbp_current_author_ua();

 	// Post title and content
-	$post['title']   = $title;
-	$post['content'] = $content;
+	$post['title']   = $title;
+	$post['content'] = $content;

 	/** Words *****************************************************************/

@@ -937,10 +935,10 @@

 		// Loop through post data
 		foreach( $post as $post_data ) {
-
+
 			// Check each user data for current word
 			if ( preg_match( $pattern, $post_data ) ) {
-
+
 				// Post does not pass
 				return false;
 			}
@@ -993,7 +991,7 @@
 	$reply_id = bbp_get_reply_id( $reply_id );
 	$topic_id = bbp_get_topic_id( $topic_id );
 	$forum_id = bbp_get_reply_id( $forum_id );
-
+
 	/** Reply *****************************************************************/

 	// Bail if reply is not published
@@ -1361,7 +1359,7 @@
 							'key'     => '_bbp_forum_id',
 							'value'   => $forum_id,
 							'compare' => '='
-						) );
+						) );
 					}

 					// Only forum replies
@@ -1503,13 +1501,13 @@
  * @global bbPress $bbp
  *
  * @see WP_Error()
- *
+ *
  * @uses is_wp_error()
  * @usese WP_Error::get_error_codes()
  */
 function bbp_has_errors() {
 	global $bbp;
-
+
 	// Assume no errors
 	$has_errors = false;

@@ -1519,7 +1517,7 @@

 	// Filter return value
 	$has_errors = apply_filters( 'bbp_has_errors', $has_errors, $bbp->errors );
-
+
 	return $has_errors;
 }

