]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
incorrect config setting for queues
authorEvan Prodromou <evan@controlyourself.ca>
Thu, 23 Apr 2009 09:34:56 +0000 (09:34 +0000)
committerEvan Prodromou <evan@controlyourself.ca>
Thu, 23 Apr 2009 09:34:56 +0000 (09:34 +0000)
classes/Notice.php

index ff00f2a946b1e960a6c07fe7dd7140a8d97d08b5..ebed0b8af5684158a726f8c01e6622ebc23b4643 100644 (file)
@@ -197,7 +197,7 @@ class Notice extends Memcached_DataObject
             $notice->saveTags();
             $notice->saveGroups();
 
-            if (!common_config('queues', 'enabled')) {
+            if (!common_config('queue', 'enabled')) {
                 $notice->addToInboxes();
             }
 
@@ -210,7 +210,7 @@ class Notice extends Memcached_DataObject
         # XXX: someone clever could prepend instead of clearing the cache
 
         if (common_config('memcached', 'enabled')) {
-            if (common_config('queues', 'enabled')) {
+            if (common_config('queue', 'enabled')) {
                 $notice->blowAuthorCaches();
             } else {
                 $notice->blowCaches();