Changeset 13099 for trunk/src/bp-members/classes/class-bp-signup.php
- Timestamp:
- 08/31/2021 09:47:06 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-members/classes/class-bp-signup.php
r13098 r13099 256 256 * @type string $activation_key Activation key to search for. If specified, all other 257 257 * parameters will be ignored. 258 * @type int|bool $active Pass 0 for inactive signups, 1 for active signups, 259 * and `false` to ignore. 258 260 * @type string $user_login Specific user login to return. 259 261 * @type string $fields Which fields to return. Specify 'ids' to fetch a list of signups IDs. … … 279 281 'include' => false, 280 282 'activation_key' => '', 283 'active' => 0, 281 284 'user_email' => '', 282 285 'user_login' => '', … … 320 323 */ 321 324 } else { 325 // Active. 326 if ( false !== $r['active'] ) { 327 $sql['where'][] = $wpdb->prepare( "active = %d", absint( $r['active'] ) ); 328 } 322 329 323 330 // Search terms.
Note: See TracChangeset
for help on using the changeset viewer.