summaryrefslogtreecommitdiffstats
path: root/wp-inst
diff options
context:
space:
mode:
Diffstat (limited to 'wp-inst')
-rw-r--r--wp-inst/wp-content/mu-plugins/wp-hashcash.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/wp-inst/wp-content/mu-plugins/wp-hashcash.php b/wp-inst/wp-content/mu-plugins/wp-hashcash.php
index 255b8d5..832a390 100644
--- a/wp-inst/wp-content/mu-plugins/wp-hashcash.php
+++ b/wp-inst/wp-content/mu-plugins/wp-hashcash.php
@@ -18,6 +18,8 @@ Hat tips: Cecil Coupe
Paul Andrew Johnston - http://pajhome.org.uk/crypt/md5/
*/
+if( strpos( $_SERVER[ 'SCRIPT_NAME' ], 'wp-inst/wp-newblog.php' ) == false ) {
+
/* Start the session, if not started */
session_start();
@@ -650,4 +652,6 @@ echo' <p>This comment has been logged, and will not be displayed on the blog.<
add_filter('post_comment_text', 'hashcash_check_hidden_tag');
-?> \ No newline at end of file
+}
+
+?>