Changeset 24441 for branches/3.5/wp-includes/user.php
- Timestamp:
- 06/19/2013 08:13:49 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.5/wp-includes/user.php
r23225 r24441 475 475 elseif ( is_numeric($search) ) 476 476 $search_columns = array('user_login', 'ID'); 477 elseif ( preg_match('|^https?://|', $search) && ! wp_is_large_network( 'users') )477 elseif ( preg_match('|^https?://|', $search) && ! ( is_multisite() && function_exists( 'wp_is_large_network' ) && wp_is_large_network( 'users' ) ) ) 478 478 $search_columns = array('user_url'); 479 479 else
Note: See TracChangeset
for help on using the changeset viewer.