diff options
author | Ciaran Gultnieks <ciaran@ciarang.com> | 2010-01-07 20:59:31 +0000 |
---|---|---|
committer | Ciaran Gultnieks <ciaran@ciarang.com> | 2010-01-07 20:59:31 +0000 |
commit | deeaafe71239597878cb3fd78aa66314745796a3 (patch) | |
tree | 62185263ebdc7dc58ec69769c4d48a2c0ee8ff71 /classes/Notice.php | |
parent | e53512cd2c2180f81fc7317de9df09a140099aa3 (diff) |
Fixes to bugs where non-local messages were being wrong put in the public timeline and public xmpp feed
Diffstat (limited to 'classes/Notice.php')
-rw-r--r-- | classes/Notice.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Notice.php b/classes/Notice.php index 9fa022650..9bda47827 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -63,7 +63,7 @@ class Notice extends Memcached_DataObject public $created; // datetime multiple_key not_null default_0000-00-00%2000%3A00%3A00 public $modified; // timestamp not_null default_CURRENT_TIMESTAMP public $reply_to; // int(4) - public $is_local; // tinyint(1) + public $is_local; // int(4) public $source; // varchar(32) public $conversation; // int(4) public $lat; // decimal(10,7) |