mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
8b36e6be3a
git-svn-id: http://svn.automattic.com/wordpress/trunk@2436 1a063a9b-81f0-0310-95a4-ce76da25c4cd
11 lines
299 B
PHP
11 lines
299 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);
|
|
|
|
wp_redirect($_SERVER['HTTP_REFERER']);
|
|
?>
|