]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-pass.php
Wordpress 3.3
[autoinstalls/wordpress.git] / wp-pass.php
1 <?php
2 /**
3  * Creates the password cookie and redirects back to where the
4  * visitor was before.
5  *
6  * @package WordPress
7  */
8
9 /** Make sure that the WordPress bootstrap has run before continuing. */
10 require( dirname(__FILE__) . '/wp-load.php');
11
12 // 10 days
13 setcookie('wp-postpass_' . COOKIEHASH, stripslashes( $_POST['post_password'] ), time() + 864000, COOKIEPATH);
14
15 wp_safe_redirect(wp_get_referer());
16 exit;
17 ?>