Changeset 19728 for trunk/wp-pass.php
- Timestamp:
- 01/11/2012 04:42:42 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-pass.php
r19712 r19728 8 8 9 9 /** Make sure that the WordPress bootstrap has run before continuing. */ 10 require( dirname(__FILE__) . '/wp-load.php'); 10 require( dirname( __FILE__ ) . '/wp-load.php'); 11 12 if ( empty( $wp_hasher ) ) { 13 require_once( ABSPATH . 'wp-includes/class-phpass.php'); 14 // By default, use the portable hash from phpass 15 $wp_hasher = new PasswordHash(8, true); 16 } 11 17 12 18 // 10 days 13 setcookie( 'wp-postpass_' . COOKIEHASH, stripslashes( $_POST['post_password'] ), time() + 864000, COOKIEPATH);19 setcookie( 'wp-postpass_' . COOKIEHASH, $wp_hasher->HashPassword( stripslashes( $_POST['post_password'] ) ), time() + 864000, COOKIEPATH ); 14 20 15 wp_safe_redirect( wp_get_referer());21 wp_safe_redirect( wp_get_referer() ); 16 22 exit;
Note: See TracChangeset
for help on using the changeset viewer.