Make WordPress Core


Ignore:
Timestamp:
06/17/2023 09:45:52 PM (16 months ago)
Author:
joedolson
Message:

Upgrade/Install: Log in link should look like a link.

Change the log in link that appears after completing installation so that it does not use the button styling. Links should look like links.

Props xavortm, menakas, afercia, rianrietveld, johnbillion, drw158, joedolson.
Fixes #40470.

File:
1 edited

Legend:

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

    r55624 r55933  
    225225        '<h1>' . __( 'Already Installed' ) . '</h1>' .
    226226        '<p>' . __( 'You appear to have already installed WordPress. To reinstall please clear your old database tables first.' ) . '</p>' .
    227         '<p class="step"><a href="' . esc_url( wp_login_url() ) . '" class="button button-large">' . __( 'Log In' ) . '</a></p>' .
     227        '<p class="step"><a href="' . esc_url( wp_login_url() ) . '">' . __( 'Log In' ) . '</a></p>' .
    228228        '</body></html>'
    229229    );
     
    444444</table>
    445445
    446 <p class="step"><a href="<?php echo esc_url( wp_login_url() ); ?>" class="button button-large"><?php _e( 'Log In' ); ?></a></p>
     446<p class="step"><a href="<?php echo esc_url( wp_login_url() ); ?>"><?php _e( 'Log In' ); ?></a></p>
    447447
    448448            <?php
Note: See TracChangeset for help on using the changeset viewer.