2003-08-20 18:59:20 -04:00
|
|
|
<?php
|
2008-05-25 11:50:15 -04:00
|
|
|
/**
|
|
|
|
* Creates the password cookie and redirects back to where the
|
|
|
|
* visitor was before.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
*/
|
|
|
|
|
2009-04-20 17:50:29 -04:00
|
|
|
/** Make sure that the WordPress bootstrap has run before continuing. */
|
2008-05-21 01:59:27 -04:00
|
|
|
require( dirname(__FILE__) . '/wp-load.php');
|
2004-10-10 13:46:50 -04:00
|
|
|
|
|
|
|
if ( get_magic_quotes_gpc() )
|
|
|
|
$_POST['post_password'] = stripslashes($_POST['post_password']);
|
|
|
|
|
|
|
|
// 10 days
|
|
|
|
setcookie('wp-postpass_' . COOKIEHASH, $_POST['post_password'], time() + 864000, COOKIEPATH);
|
|
|
|
|
2007-09-18 18:23:16 -04:00
|
|
|
wp_safe_redirect(wp_get_referer());
|
2003-08-20 18:59:20 -04:00
|
|
|
?>
|