From b1282b1b9fd9997d15f127810f98117e01b72daa Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 22 Jul 2008 10:18:28 -0400 Subject: mark incoming notices as local or not darcs-hash:20080722141828-84dde-160fe4582c1949af1f6b049b3336cad493e30510.gz --- actions/newnotice.php | 3 ++- actions/postnotice.php | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'actions') diff --git a/actions/newnotice.php b/actions/newnotice.php index a98829cd8..bf5fd5bcc 100644 --- a/actions/newnotice.php +++ b/actions/newnotice.php @@ -38,9 +38,10 @@ class NewnoticeAction extends Action { $user = common_current_user(); assert($user); # XXX: maybe an error instead... - $notice = DB_DataObject::factory('notice'); + $notice = new Notice(); assert($notice); $notice->profile_id = $user->id; # user id *is* profile id + $notice->is_local = 1; $notice->created = DB_DataObject_Cast::dateTime(); # Default theme uses 'content' for something else $notice->content = $this->trimmed('status_textarea'); diff --git a/actions/postnotice.php b/actions/postnotice.php index c86e095ff..ab12277bb 100644 --- a/actions/postnotice.php +++ b/actions/postnotice.php @@ -75,6 +75,7 @@ class PostnoticeAction extends Action { $notice = Notice::staticGet('uri', $notice_uri); if (!$notice) { $notice = new Notice(); + $notice->is_local = 0; $notice->profile_id = $remote_profile->id; $notice->uri = $notice_uri; $notice->content = $content; -- cgit v1.2.3-54-g00ecf