Make WordPress Core


Ignore:
Timestamp:
06/20/2020 01:16:45 PM (4 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Replace echo sprintf() with printf().

See #49542.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/network/sites.php

    r47855 r48111  
    118118                    <input type="hidden" name="_wp_http_referer" value="<?php echo esc_attr( wp_get_referer() ); ?>" />
    119119                    <?php wp_nonce_field( $site_action . '_' . $id, '_wpnonce', false ); ?>
    120                     <p><?php echo sprintf( $manage_actions[ $site_action ], $site_address ); ?></p>
     120                    <p><?php printf( $manage_actions[ $site_action ], $site_address ); ?></p>
    121121                    <?php submit_button( __( 'Confirm' ), 'primary' ); ?>
    122122                </form>
Note: See TracChangeset for help on using the changeset viewer.