diff options
| author | donncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36> | 2005-08-22 18:42:27 +0000 |
|---|---|---|
| committer | donncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36> | 2005-08-22 18:42:27 +0000 |
| commit | 26095197c5e18fbb7222a7b4fa2c3b77030caba2 (patch) | |
| tree | f5bb78c93c25dc8f6aaa730a211737ad84c5fd1d | |
| parent | 7b51604c44f527792626392f8caaec4e97536b88 (diff) | |
Don't want hashcash to run during install
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@213 7be80a69-a1ef-0310-a953-fb0f7c49ff36
| -rw-r--r-- | wp-inst/wp-content/mu-plugins/wp-hashcash.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/wp-inst/wp-content/mu-plugins/wp-hashcash.php b/wp-inst/wp-content/mu-plugins/wp-hashcash.php index 425d17f..a4ef0b4 100644 --- a/wp-inst/wp-content/mu-plugins/wp-hashcash.php +++ b/wp-inst/wp-content/mu-plugins/wp-hashcash.php @@ -18,6 +18,9 @@ Hat tips: Cecil Coupe - http://ccdl.dyndns.biz/werehosed/ Paul Andrew Johnston - http://pajhome.org.uk/crypt/md5/
*/
+if( defined( "WP_INSTALLING" ) )
+ return;
+
if( strpos( $_SERVER[ 'SCRIPT_NAME' ], 'wp-inst/wp-newblog.php' ) == false ) {
/* Start the session, if not started */
|
