Make WordPress Core

Changeset 34534


Ignore:
Timestamp:
09/25/2015 04:43:57 AM (11 years ago)
Author:
boonebgorges
Message:

Pinking shears.

Location:
trunk/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/user.php

    r34505 r34534  
    108108        if ( $user->user_login == '' )
    109109                $errors->add( 'user_login', __( '<strong>ERROR</strong>: Please enter a username.' ) );
    110                
     110
    111111        /* 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
    116116        /* checking the password has been typed twice */
    117117        /**
  • trunk/src/wp-includes/comment-functions.php

    r34533 r34534  
    709709                $hour_ago,
    710710                $user,
    711                 $email 
     711                $email
    712712        );
    713713        $lasttime = $wpdb->get_var( $sql );
  • trunk/src/wp-includes/taxonomy-functions.php

    r34530 r34534  
    322322 *         Triggers the handling of rewrites for this taxonomy. Default true, using $taxonomy as slug. To prevent
    323323 *         rewrite, set to false. To specify rewrite rules, an array can be passed with any of these keys:
    324  *   
     324 *
    325325 *         @type string $slug         Customize the permastruct slug. Default `$taxonomy` key.
    326326 *         @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.