Changeset 5793
- Timestamp:
- 05/24/2015 12:08:56 AM (11 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
-
includes/admin/settings.php (modified) (1 diff)
-
includes/common/widgets.php (modified) (1 diff)
-
templates/default/bbpress/form-user-login.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/settings.php
r5770 r5793 1369 1369 ?> 1370 1370 1371 <input name="_bbp_converter_db_pass" id="_bbp_converter_db_pass" type="password" value="<?php bbp_form_option( '_bbp_converter_db_pass' ); ?>" class="medium-text" />1371 <input name="_bbp_converter_db_pass" id="_bbp_converter_db_pass" type="password" value="<?php bbp_form_option( '_bbp_converter_db_pass' ); ?>" class="medium-text" autocomplete="off" /> 1372 1372 <label for="_bbp_converter_db_pass"><?php esc_html_e( 'Password to access the database', 'bbpress' ); ?></label> 1373 1373 -
trunk/src/includes/common/widgets.php
r5770 r5793 96 96 <div class="bbp-password"> 97 97 <label for="user_pass"><?php _e( 'Password', 'bbpress' ); ?>: </label> 98 <input type="password" name="pwd" value="<?php bbp_sanitize_val( 'user_pass', 'password' ); ?>" size="20" id="user_pass" />98 <input type="password" name="pwd" value="<?php bbp_sanitize_val( 'user_pass', 'password' ); ?>" size="20" id="user_pass" autocomplete="off" /> 99 99 </div> 100 100 -
trunk/src/templates/default/bbpress/form-user-login.php
r5770 r5793 21 21 <div class="bbp-password"> 22 22 <label for="user_pass"><?php esc_html_e( 'Password', 'bbpress' ); ?>: </label> 23 <input type="password" name="pwd" value="<?php bbp_sanitize_val( 'user_pass', 'password' ); ?>" size="20" id="user_pass" />23 <input type="password" name="pwd" value="<?php bbp_sanitize_val( 'user_pass', 'password' ); ?>" size="20" id="user_pass" autocomplete="off" /> 24 24 </div> 25 25
Note: See TracChangeset
for help on using the changeset viewer.