Changeset 7253 for trunk/wp-includes/user.php
- Timestamp:
- 03/11/2008 09:37:23 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/user.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/user.php
r6902 r7253 90 90 91 91 if ( isset( $user->{$wpdb->prefix . $option} ) ) // Blog specific 92 return$user->{$wpdb->prefix . $option};92 $result = $user->{$wpdb->prefix . $option}; 93 93 elseif ( isset( $user->{$option} ) ) // User specific and cross-blog 94 return$user->{$option};94 $result = $user->{$option}; 95 95 else // Blog global 96 return get_option( $option ); 96 $result = get_option( $option ); 97 98 return apply_filters("get_user_option_{$option}", $result, $option, $user); 97 99 } 98 100
Note: See TracChangeset
for help on using the changeset viewer.