Skip to:
Content

bbPress.org

Changeset 3126


Ignore:
Timestamp:
05/09/2011 07:50:40 AM (15 years ago)
Author:
johnjamesjacoby
Message:

Fix lost password page template and related functions. Fix duplicate template notices on theme forms. Fixes #1491.

Location:
branches/plugin
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/plugin/bbp-includes/bbp-user-template.php

    r3120 r3126  
    909909?>
    910910
    911         <input type="hidden" name="action"      value="bbp-user-login" id="bbp_user_login" />
    912911        <input type="hidden" name="user-cookie" value="1" />
    913912
     
    953952?>
    954953
    955         <input type="hidden" name="action"      id="bbp_user_lost_pass" value="bbp-user-lost-pass" />
    956954        <input type="hidden" name="user-cookie" value="1" />
     955
     956        <?php bbp_redirect_to_field( add_query_arg( array( 'checkemail' => 'confirm' ), get_permalink() ) ); ?>
    957957
    958958        <?php wp_nonce_field( 'bbp-user-lost-pass' );
  • branches/plugin/bbp-themes/bbp-twentyten/bbpress/form-user-lost-pass.php

    r2943 r3126  
    1010?>
    1111
    12 <form method="post" action="<?php bbp_wp_login_action( array( 'action' => 'lostpassword', 'context' => 'login_post' ) ); ?>" class="bbp-user-register">
     12    <form method="post" action="<?php bbp_wp_login_action( array( 'action' => 'lostpassword', 'context' => 'login_post' ) ); ?>" class="bbp-user-register">
    1313        <fieldset>
    1414            <legend><?php _e( 'Lost Password', 'bbpress' ); ?></legend>
    15 
    16             <?php do_action( 'bbp_template_notices' ); ?>
    1715
    1816            <div class="bbp-username">
     
    3129                <?php bbp_user_lost_pass_fields(); ?>
    3230
    33                 <?php $reset = $_GET['reset']; if($reset == true) { echo '<p>A message will be sent to your email address.</p>'; } ?>
    3431            </div>
    3532        </fieldset>
Note: See TracChangeset for help on using the changeset viewer.