Make WordPress Core


Ignore:
Timestamp:
11/30/2017 11:09:33 PM (7 years ago)
Author:
pento
Message:

Code is Poetry.
WordPress' code just... wasn't.
This is now dealt with.

Props jrf, pento, netweb, GaryJ, jdgrimes, westonruter, Greg Sherwood from PHPCS, and everyone who's ever contributed to WPCS and PHPCS.
Fixes #41057.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-automatic-upgrader-skin.php

    r41161 r42343  
    5151
    5252    /**
    53      *
    5453     * @return array
    5554     */
     
    5958
    6059    /**
    61      *
    6260     * @param string|array|WP_Error $data
    6361     */
     
    7068            $string = $data;
    7169        }
    72         if ( ! empty( $this->upgrader->strings[ $string ] ) )
     70        if ( ! empty( $this->upgrader->strings[ $string ] ) ) {
    7371            $string = $this->upgrader->strings[ $string ];
     72        }
    7473
    7574        if ( strpos( $string, '%' ) !== false ) {
    7675            $args = func_get_args();
    7776            $args = array_splice( $args, 1 );
    78             if ( ! empty( $args ) )
     77            if ( ! empty( $args ) ) {
    7978                $string = vsprintf( $string, $args );
     79            }
    8080        }
    8181
     
    8383
    8484        // Only allow basic HTML in the messages, as it'll be used in emails/logs rather than direct browser output.
    85         $string = wp_kses( $string, array(
    86             'a' => array(
    87                 'href' => true
    88             ),
    89             'br' => true,
    90             'em' => true,
    91             'strong' => true,
    92         ) );
     85        $string = wp_kses(
     86            $string, array(
     87                'a'      => array(
     88                    'href' => true,
     89                ),
     90                'br'     => true,
     91                'em'     => true,
     92                'strong' => true,
     93            )
     94        );
    9395
    94         if ( empty( $string ) )
     96        if ( empty( $string ) ) {
    9597            return;
     98        }
    9699
    97100        $this->messages[] = $string;
     
    108111    public function footer() {
    109112        $output = ob_get_clean();
    110         if ( ! empty( $output ) )
     113        if ( ! empty( $output ) ) {
    111114            $this->feedback( $output );
     115        }
    112116    }
    113117}
Note: See TracChangeset for help on using the changeset viewer.