Make WordPress Core

Changeset 41850


Ignore:
Timestamp:
10/13/2017 02:09:42 AM (7 years ago)
Author:
pento
Message:

Login: Swap bloginfo() usage for get_bloginfo().

[41843] introduced a use of bloginfo(), where it should be using get_bloginfo().

Props dlh.
Fixes #34625.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-login.php

    r41843 r41850  
    141141     */
    142142    if ( is_multisite() ) {
    143         $login_header_text = bloginfo( 'name' );
     143        $login_header_text = get_bloginfo( 'name', 'display' );
    144144    } else {
    145145        $login_header_text = $login_header_title;
Note: See TracChangeset for help on using the changeset viewer.