Make WordPress Core

Ticket #40470: 40470.patch

File 40470.patch, 939 bytes (added by menakas, 7 years ago)

Removed button classes for Log In - 2 cases - Already installed & just installed

  • src/wp-admin/install.php

     
    214214        die(
    215215                '<h1>' . __( 'Already Installed' ) . '</h1>' .
    216216                '<p>' . __( 'You appear to have already installed WordPress. To reinstall please clear your old database tables first.' ) . '</p>' .
    217                 '<p class="step"><a href="' . esc_url( wp_login_url() ) . '" class="button button-large">' . __( 'Log In' ) . '</a></p>' .
     217                '<p class="step"><a href="' . esc_url( wp_login_url() ) . '">' . __( 'Log In' ) . '</a></p>' .
    218218                '</body></html>'
    219219        );
    220220}
     
    391391        </tr>
    392392</table>
    393393
    394 <p class="step"><a href="<?php echo esc_url( wp_login_url() ); ?>" class="button button-large"><?php _e( 'Log In' ); ?></a></p>
     394<p class="step"><a href="<?php echo esc_url( wp_login_url() ); ?>"><?php _e( 'Log In' ); ?></a></p>
    395395
    396396<?php
    397397                }