summaryrefslogtreecommitdiffstats
path: root/wp-pass.php
diff options
context:
space:
mode:
Diffstat (limited to 'wp-pass.php')
-rw-r--r--wp-pass.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/wp-pass.php b/wp-pass.php
index da6b27e..9eb49d1 100644
--- a/wp-pass.php
+++ b/wp-pass.php
@@ -1,5 +1,13 @@
<?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 ran before continuing. */
+require( dirname(__FILE__) . '/wp-load.php');
if ( get_magic_quotes_gpc() )
$_POST['post_password'] = stripslashes($_POST['post_password']);