b39c4f8273
git-svn-id: https://develop.svn.wordpress.org/trunk@1964 602fd350-edb4-49c9-b593-d223f7449a82
12 lines
310 B
PHP
12 lines
310 B
PHP
<?php
|
|
require( dirname(__FILE__) . '/wp-config.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);
|
|
|
|
header('Location: ' . $_SERVER['HTTP_REFERER']);
|
|
|
|
?>
|