mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
bbe1956bbb
git-svn-id: http://svn.automattic.com/wordpress/trunk@11022 1a063a9b-81f0-0310-95a4-ce76da25c4cd
19 lines
487 B
PHP
19 lines
487 B
PHP
<?php
|
|
/**
|
|
* Creates the password cookie and redirects back to where the
|
|
* visitor was before.
|
|
*
|
|
* @package WordPress
|
|
*/
|
|
|
|
/** Make sure that the WordPress bootstrap has run before continuing. */
|
|
require( dirname(__FILE__) . '/wp-load.php');
|
|
|
|
if ( get_magic_quotes_gpc() )
|
|
$_POST['post_password'] = stripslashes($_POST['post_password']);
|
|
|
|
// 10 days
|
|
setcookie('wp-postpass_' . COOKIEHASH, $_POST['post_password'], time() + 864000, COOKIEPATH);
|
|
|
|
wp_safe_redirect(wp_get_referer());
|
|
?>
|