summaryrefslogtreecommitdiff
path: root/lib/util.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-04-23 10:09:08 +0000
committerEvan Prodromou <evan@controlyourself.ca>2009-04-23 10:09:08 +0000
commit1c0d82de3bb7f75649a017a7d5632a6e070876c2 (patch)
treef8e92b6774f04db2882b0f76a313503165d1bd0a /lib/util.php
parent290ae7888c4d8dbcb703920960b10bca635563ed (diff)
8-char limit on transports
Diffstat (limited to 'lib/util.php')
-rw-r--r--lib/util.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php
index d77039b74..f862d7fcc 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -886,7 +886,8 @@ function common_enqueue_notice($notice)
}
if (common_config('memcached', 'enabled')) {
- $transports[] = 'memcached';
+ // Note: limited to 8 chars
+ $transports[] = 'memcache';
}
if (common_config('inboxes', 'enabled') === true ||