summaryrefslogtreecommitdiff
path: root/modules/system/system.install
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-06-30 17:15:09 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-06-30 17:15:09 +0000
commitef1693b836a8ce090d8ff094118e0847f0f3a4a1 (patch)
treefdc8ae59ec56433b9f3e34473ac0563e3b8ca60f /modules/system/system.install
parentff0c575fd5bf475dc3272f9aa71b7aec71d04df7 (diff)
downloadbrdo-ef1693b836a8ce090d8ff094118e0847f0f3a4a1.tar.gz
brdo-ef1693b836a8ce090d8ff094118e0847f0f3a4a1.tar.bz2
#495956 follow-up by axyjo: Remove needless serialize() from system.install.
Diffstat (limited to 'modules/system/system.install')
-rw-r--r--modules/system/system.install2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.install b/modules/system/system.install
index 71e452fc2..d34a16943 100644
--- a/modules/system/system.install
+++ b/modules/system/system.install
@@ -512,7 +512,7 @@ function system_install() {
variable_set('node_options_forum', array(0 => 'status'));
- $cron_key = serialize(md5(mt_rand()));
+ $cron_key = md5(mt_rand());
variable_set('cron_key', $cron_key);
}