Changeset 7706
- Timestamp:
- 12/18/2013 08:08:11 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-notifications/bp-notifications-classes.php
r7695 r7706 318 318 if ( ! empty( $args['is_new'] ) ) { 319 319 $where_conditions['is_new'] = "is_new = 1"; 320 } elseif ( ( 0 === $args['is_new'] ) || (false === $args['is_new'] ) ) {320 } elseif ( isset( $args['is_new'] ) && ( 0 === $args['is_new'] || false === $args['is_new'] ) ) { 321 321 $where_conditions['is_new'] = "is_new = 0"; 322 322 }
Note: See TracChangeset
for help on using the changeset viewer.