]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-pass.php
Wordpress 3.2
[autoinstalls/wordpress.git] / wp-pass.php
index 709a63b07ff293f24cacf690ce850b385ceb20ab..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']);
@@ -8,4 +16,5 @@ if ( get_magic_quotes_gpc() )
 setcookie('wp-postpass_' . COOKIEHASH, $_POST['post_password'], time() + 864000, COOKIEPATH);
 
 wp_safe_redirect(wp_get_referer());
 setcookie('wp-postpass_' . COOKIEHASH, $_POST['post_password'], time() + 864000, COOKIEPATH);
 
 wp_safe_redirect(wp_get_referer());
-?>
\ No newline at end of file
+exit;
+?>