]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-pass.php
Wordpress 3.0.3
[autoinstalls/wordpress.git] / wp-pass.php
index e1cb4e055e1ac0d6e4fa8dee945e66fd14f845bd..0ad6e5ea4e72412176c8df1589fe37c04c246580 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,5 @@ 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(wp_get_referer());
+wp_safe_redirect(wp_get_referer());
 ?>
\ No newline at end of file
 ?>
\ No newline at end of file