diff options
| author | donncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36> | 2005-11-14 09:20:24 +0000 |
|---|---|---|
| committer | donncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36> | 2005-11-14 09:20:24 +0000 |
| commit | 37f4745bd187688d671658a709ca9cffb43efbca (patch) | |
| tree | 02cfea906a197041191fd40f421c1f2b10ea12c8 | |
| parent | 84ced2073e6ad54fba9ac9fef66f2618f16201f5 (diff) | |
Added spam check
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@433 7be80a69-a1ef-0310-a953-fb0f7c49ff36
| -rw-r--r-- | wp-inst/wp-settings.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/wp-inst/wp-settings.php b/wp-inst/wp-settings.php index 8f0dbfa..4da5a95 100644 --- a/wp-inst/wp-settings.php +++ b/wp-inst/wp-settings.php @@ -282,6 +282,10 @@ if( $current_blog->archived == '1' ) { die( "This blog has been archived or suspended temporarily. Please check back later." ); } +if( $current_blog->spam == '1' ) { + die( "This blog has been archived or suspended temporarily. Please check back later." ); +} + if (!strstr($_SERVER['PHP_SELF'], 'install.php') && !strstr($_SERVER['PHP_SELF'], 'wp-admin/import')) : // Used to guarantee unique hash cookies $cookiehash = ''; // Remove in 1.4 |
