Index: bp-notifications/bp-notifications-classes.php
===================================================================
--- bp-notifications/bp-notifications-classes.php	(revisão 829430)
+++ bp-notifications/bp-notifications-classes.php	(cópia de trabalho)
@@ -315,10 +315,12 @@
 		}
 
 		// is_new
-		if ( ! empty( $args['is_new'] ) ) {
-			$where_conditions['is_new'] = "is_new = 1";
-		} elseif ( ( 0 === $args['is_new'] ) || ( false === $args['is_new'] ) ) {
-			$where_conditions['is_new'] = "is_new = 0";
+		if ( $args['is_new'] !== 'both' ) {
+			if ( ! empty( $args['is_new'] ) ) {
+				$where_conditions['is_new'] = "is_new = 1";
+			} elseif ( ( 0 === $args['is_new'] ) || ( false === $args['is_new'] ) ) {
+				$where_conditions['is_new'] = "is_new = 0";
+			}
 		}
 
 		// search_terms
