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. Built from https://develop.svn.wordpress.org/trunk@55933 git-svn-id: http://core.svn.wordpress.org/trunk@55445 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
f50eccbe85
commit
07fa311aff
|
@ -224,7 +224,7 @@ if ( is_blog_installed() ) {
|
||||||
die(
|
die(
|
||||||
'<h1>' . __( 'Already Installed' ) . '</h1>' .
|
'<h1>' . __( 'Already Installed' ) . '</h1>' .
|
||||||
'<p>' . __( 'You appear to have already installed WordPress. To reinstall please clear your old database tables first.' ) . '</p>' .
|
'<p>' . __( 'You appear to have already installed WordPress. To reinstall please clear your old database tables first.' ) . '</p>' .
|
||||||
'<p class="step"><a href="' . esc_url( wp_login_url() ) . '" class="button button-large">' . __( 'Log In' ) . '</a></p>' .
|
'<p class="step"><a href="' . esc_url( wp_login_url() ) . '">' . __( 'Log In' ) . '</a></p>' .
|
||||||
'</body></html>'
|
'</body></html>'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -443,7 +443,7 @@ switch ( $step ) {
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<p class="step"><a href="<?php echo esc_url( wp_login_url() ); ?>" class="button button-large"><?php _e( 'Log In' ); ?></a></p>
|
<p class="step"><a href="<?php echo esc_url( wp_login_url() ); ?>"><?php _e( 'Log In' ); ?></a></p>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.3-alpha-55932';
|
$wp_version = '6.3-alpha-55933';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue