Changeset 34534
- Timestamp:
- 09/25/2015 04:43:57 AM (8 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/user.php
r34505 r34534 108 108 if ( $user->user_login == '' ) 109 109 $errors->add( 'user_login', __( '<strong>ERROR</strong>: Please enter a username.' ) ); 110 110 111 111 /* checking that nickname has been typed */ 112 if ( $update && empty( $user->nickname ) ) { 113 $errors->add( 'nickname', __( '<strong>ERROR</strong>: Please enter a nickname.' ) ); 114 } 115 112 if ( $update && empty( $user->nickname ) ) { 113 $errors->add( 'nickname', __( '<strong>ERROR</strong>: Please enter a nickname.' ) ); 114 } 115 116 116 /* checking the password has been typed twice */ 117 117 /** -
trunk/src/wp-includes/comment-functions.php
r34533 r34534 709 709 $hour_ago, 710 710 $user, 711 $email 711 $email 712 712 ); 713 713 $lasttime = $wpdb->get_var( $sql ); -
trunk/src/wp-includes/taxonomy-functions.php
r34530 r34534 322 322 * Triggers the handling of rewrites for this taxonomy. Default true, using $taxonomy as slug. To prevent 323 323 * rewrite, set to false. To specify rewrite rules, an array can be passed with any of these keys: 324 * 324 * 325 325 * @type string $slug Customize the permastruct slug. Default `$taxonomy` key. 326 326 * @type bool $with_front Should the permastruct be prepended with WP_Rewrite::$front. Default true.
Note: See TracChangeset
for help on using the changeset viewer.