mirror of
git://develop.git.wordpress.org/
synced 2025-01-17 21:08:44 +01:00
d8d2625530
git-svn-id: https://develop.svn.wordpress.org/branches/2.0@3923 602fd350-edb4-49c9-b593-d223f7449a82
11 lines
291 B
PHP
11 lines
291 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(wp_get_referer());
|
|
?>
|