]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
go straight to the DB for inbox before insert
authorEvan Prodromou <evan@status.net>
Thu, 14 Jan 2010 06:12:19 +0000 (22:12 -0800)
committerEvan Prodromou <evan@status.net>
Thu, 14 Jan 2010 06:12:19 +0000 (22:12 -0800)
classes/Inbox.php

index 83cfe8ef827fa735512fe7389c05d0b3f798a378..f3d4afca390530cd3f6e9b339ef9f0d03fa17476 100644 (file)
@@ -103,9 +103,9 @@ class Inbox extends Memcached_DataObject
 
     static function insertNotice($user_id, $notice_id)
     {
-        $inbox = Inbox::staticGet('user_id', $user_id);
+        $inbox = DB_DataObject::staticGet('inbox', 'user_id', $user_id);
 
-        if (empty($inbox) || $inbox->fake) {
+        if (empty($inbox)) {
             $inbox = Inbox::initialize($user_id);
         }