]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-pass.php
Wordpress 3.1-scripts
[autoinstalls/wordpress.git] / wp-pass.php
index d7d23a66ce7d5985214fa6b385b49ac637781e80..c0c0c42a3e2c7d56050d511b76999f1019295e8c 100644 (file)
@@ -1,5 +1,13 @@
 <?php
 <?php
-require( dirname(__FILE__) . '/wp-config.php');
+/**
+ * Creates the password cookie and redirects back to where the
+ * visitor was before.
+ *
+ * @package WordPress
+ */
+
+/** Make sure that the WordPress bootstrap has run before continuing. */
+require( dirname(__FILE__) . '/wp-load.php');
 
 if ( get_magic_quotes_gpc() )
        $_POST['post_password'] = stripslashes($_POST['post_password']);
 
 if ( get_magic_quotes_gpc() )
        $_POST['post_password'] = stripslashes($_POST['post_password']);
@@ -7,5 +15,6 @@ if ( get_magic_quotes_gpc() )
 // 10 days
 setcookie('wp-postpass_' . COOKIEHASH, $_POST['post_password'], time() + 864000, COOKIEPATH);
 
 // 10 days
 setcookie('wp-postpass_' . COOKIEHASH, $_POST['post_password'], time() + 864000, COOKIEPATH);
 
-wp_redirect($_SERVER['HTTP_REFERER']);
-?>
\ No newline at end of file
+wp_safe_redirect(wp_get_referer());
+exit;
+?>