]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
change NOTICE_GATEWAY to Notice::GATEWAY so autoloading works
authorEvan Prodromou <evan@controlyourself.ca>
Thu, 23 Jul 2009 21:22:22 +0000 (14:22 -0700)
committerEvan Prodromou <evan@controlyourself.ca>
Thu, 23 Jul 2009 21:22:22 +0000 (14:22 -0700)
classes/Fave.php
classes/Notice.php
classes/User.php
scripts/twitterstatusfetcher.php

index c3ec62dcf0176c7166d4f2dbb5e69e9791b86a2e..d1e3b01b384718c13d8b87cad0c75341c9275059 100644 (file)
@@ -59,7 +59,7 @@ class Fave extends Memcached_DataObject
              $qry =  'SELECT fave.* FROM fave ';
              $qry .= 'INNER JOIN notice ON fave.notice_id = notice.id ';
              $qry .= 'WHERE fave.user_id = ' . $user_id . ' ';
-             $qry .= 'AND notice.is_local != ' . NOTICE_GATEWAY . ' ';
+             $qry .= 'AND notice.is_local != ' . Notice::GATEWAY . ' ';
         }
 
         if ($since_id != 0) {
index 08125cf7b0d7c77f9546c39bf80c2a248a58c031..4b9a866b02e83a1f52df5a843358cecad658dc7f 100644 (file)
@@ -32,7 +32,6 @@ define('NOTICE_CACHE_WINDOW', 61);
 define('NOTICE_LOCAL_PUBLIC', 1);
 define('NOTICE_REMOTE_OMB', 0);
 define('NOTICE_LOCAL_NONPUBLIC', -1);
-define('NOTICE_GATEWAY', -2);
 
 define('MAX_BOXCARS', 128);
 
@@ -63,6 +62,8 @@ class Notice extends Memcached_DataObject
     /* the code above is auto generated do not remove the tag below */
     ###END_AUTOCODE
 
+    const GATEWAY = -2;
+
     function getProfile()
     {
         return Profile::staticGet('id', $this->profile_id);
index 6c1f149e4ded31fca07627ab0c16210e63ece717..bea47a3b058c8b70e74230ab5bce6c1b27667517 100644 (file)
@@ -443,7 +443,7 @@ class User extends Memcached_DataObject
               'SELECT notice.* ' .
               'FROM notice JOIN subscription ON notice.profile_id = subscription.subscribed ' .
               'WHERE subscription.subscriber = %d ' .
-              'AND notice.is_local != ' . NOTICE_GATEWAY;
+              'AND notice.is_local != ' . Notice::GATEWAY;
             return Notice::getStream(sprintf($qry, $this->id),
                                      'user:notices_with_friends:' . $this->id,
                                      $offset, $limit, $since_id, $before_id,
index 8b10bfbadda5c5396f82c38c923da5a0526288ec..4a1ed89779020805811d5fe84a558b35eb2add65 100755 (executable)
@@ -32,7 +32,7 @@ $helptext = <<<END_OF_TRIM_HELP
 Batch script for retrieving Twitter messages from foreign service.
 
   -i --id      Identity (default 'generic')
-    
+
 END_OF_TRIM_HELP;
 
 require_once INSTALLDIR.'/scripts/commandline.inc';
@@ -317,7 +317,7 @@ class TwitterStatusFetcher extends Daemon
             $notice->rendered   = common_render_content($notice->content, $notice);
             $notice->source     = 'twitter';
             $notice->reply_to   = null; // XXX lookup reply
-            $notice->is_local   = NOTICE_GATEWAY;
+            $notice->is_local   = Notice::GATEWAY;
 
             if (Event::handle('StartNoticeSave', array(&$notice))) {
                 $id = $notice->insert();