Skip to:
Content

BuddyPress.org

Ticket #8755: #8755.patch

File #8755.patch, 2.8 KB (added by upadalavipul, 2 years ago)
  • public_html/wp-content/themes/codex-buddypress-org/widgets/login.php

     
    1818                        <?php do_action( 'bp_before_sidebar_me' ) ?>
    1919
    2020                        <div id="sidebar-me">
    21                                 <a href="<?php echo bp_loggedin_user_domain() ?>">
     21                                <a href="<?php echo bp_loggedin_user_domain(); ?>">
    2222                                        <?php bp_loggedin_user_avatar( 'type=thumb&width=40&height=40' ) ?>
    2323                                </a>
    2424
    25                                 <h4><?php echo bp_core_get_userlink( bp_loggedin_user_id() ) ?></h4>
    26                                 <a class="button logout" href="<?php echo wp_logout_url( bp_get_root_domain() ) ?>"><?php _e( 'Log Out', 'buddypress' ) ?></a>
     25                                <h4><?php echo bp_core_get_userlink( bp_loggedin_user_id() ); ?></h4>
     26                                <a class="button logout" href="<?php echo wp_logout_url( bp_get_root_domain() ); ?>"><?php _e( 'Log Out', 'buddypress' ); ?></a>
    2727
    2828                                <?php do_action( 'bp_sidebar_me' ) ?>
    2929                        </div>
     
    4545                        <p id="login-text">
    4646                                <?php _e( 'To start connecting please log in first.', 'buddypress' ) ?>
    4747                                <?php if ( bp_get_signup_allowed() ) : ?>
    48                                         <?php printf( __( ' You can also <a href="%s" title="Create an account">create an account</a>.', 'buddypress' ), site_url( BP_REGISTER_SLUG . '/' ) ) ?>
     48                                        <?php printf( __( ' You can also <a href="%s" title="Create an account">create an account</a>.', 'buddypress' ), site_url( BP_REGISTER_SLUG . '/' ) ); ?>
    4949                                <?php endif; ?>
    5050                        </p>
    5151
    52                         <form name="login-form" id="sidebar-login-form" class="standard-form" action="<?php echo site_url( 'wp-login.php', 'login_post' ) ?>" method="post">
     52                        <form name="login-form" id="sidebar-login-form" class="standard-form" action="<?php echo site_url( 'wp-login.php', 'login_post' ); ?>" method="post">
    5353                                <label><?php _e( 'Username', 'buddypress' ) ?><br />
    5454                                <input type="text" name="log" id="sidebar-user-login" class="input" value="<?php echo attribute_escape(stripslashes($user_login)); ?>" /></label>
    5555
     
    5656                                <label><?php _e( 'Password', 'buddypress' ) ?><br />
    5757                                <input type="password" name="pwd" id="sidebar-user-pass" class="input" value="" /></label>
    5858
    59                                 <p class="forgetmenot"><label><input name="rememberme" type="checkbox" id="sidebar-rememberme" value="forever" /> <?php _e( 'Remember Me', 'buddypress' ) ?></label></p>
     59                                <p class="forgetmenot"><label><input name="rememberme" type="checkbox" id="sidebar-rememberme" value="forever" /> <?php _e( 'Remember Me', 'buddypress' ); ?></label></p>
    6060
    6161                                <?php do_action( 'bp_sidebar_login_form' ) ?>
    6262                                <input type="submit" name="wp-submit" id="sidebar-wp-submit" value="<?php esc_attr_e('Log In'); ?>" tabindex="100" />