Files
WordPress/wp-pass.php
T

11 lines
291 B
PHP
Raw Normal View History

2003-08-20 22:59:20 +00:00
<?php
2004-12-16 02:57:05 +00:00
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());
2003-08-20 22:59:20 +00:00
?>