mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 10:22:23 +01:00
d41eaab5ce
git-svn-id: http://svn.automattic.com/wordpress/trunk@323 1a063a9b-81f0-0310-95a4-ce76da25c4cd
12 lines
362 B
PHP
12 lines
362 B
PHP
<?php
|
|
|
|
/*
|
|
This is just a very simple script to set a cookie with a posted password and redirect back from whence the browser came.
|
|
It doesn't need to connect to the DB, or do anything fancy at all. Yum.
|
|
-- Matt
|
|
*/
|
|
|
|
setcookie('wp-postpass', $HTTP_POST_VARS['post_password'], time()+60*60*24*30);
|
|
header('Location: ' . $HTTP_SERVER_VARS['HTTP_REFERER']);
|
|
|
|
?>
|