summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2005-09-05 09:44:46 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2005-09-05 09:44:46 +0000
commit628f25f117bdcb4a4e2ddf76ba1e52e2054ad75e (patch)
tree765897c9f1000c4bc94c89fd63edd7fc87a34b62
parentf1cc092c5b64a722c78e387750584e1a6cee70b9 (diff)
downloadwordpress-mu-628f25f117bdcb4a4e2ddf76ba1e52e2054ad75e.tar.gz
wordpress-mu-628f25f117bdcb4a4e2ddf76ba1e52e2054ad75e.tar.xz
wordpress-mu-628f25f117bdcb4a4e2ddf76ba1e52e2054ad75e.zip
remove hash
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@289 7be80a69-a1ef-0310-a953-fb0f7c49ff36
-rw-r--r--wp-inst/wp-settings.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/wp-inst/wp-settings.php b/wp-inst/wp-settings.php
index 14cdbb2..ebe7905 100644
--- a/wp-inst/wp-settings.php
+++ b/wp-inst/wp-settings.php
@@ -253,8 +253,8 @@ if( $is_archived == 'yes' ) {
if (!strstr($_SERVER['PHP_SELF'], 'install.php') && !strstr($_SERVER['PHP_SELF'], 'wp-admin/import')) :
// Used to guarantee unique hash cookies
- $cookiehash = md5(get_settings('siteurl')); // Remove in 1.4
- define('COOKIEHASH', $cookiehash);
+ $cookiehash = ''; // Remove in 1.4
+ define('COOKIEHASH', '');
endif;
if ( !defined('USER_COOKIE') )