diff options
author | friendica <info@friendica.com> | 2013-01-24 23:10:37 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-01-24 23:10:37 -0800 |
commit | 769456305bf8ce5e2152da5e9b80fe3894cfcddc (patch) | |
tree | 590f8fee862bd9938927c3d24f90050a63233e73 | |
parent | fc8225be8d46cae3f7e647fd800c2d77661d25ce (diff) | |
download | volse-hubzilla-769456305bf8ce5e2152da5e9b80fe3894cfcddc.tar.gz volse-hubzilla-769456305bf8ce5e2152da5e9b80fe3894cfcddc.tar.bz2 volse-hubzilla-769456305bf8ce5e2152da5e9b80fe3894cfcddc.zip |
inverted logic on wall-wall check
-rw-r--r-- | include/ItemObject.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ItemObject.php b/include/ItemObject.php index 89015749b..9666cda23 100644 --- a/include/ItemObject.php +++ b/include/ItemObject.php @@ -553,7 +553,7 @@ class Item extends BaseObject { $this->owner_photo = ''; $this->owner_name = ''; - if($conv->get_mode() !== 'channel') + if($conv->get_mode() === 'channel') return; if($this->is_toplevel() && ($this->get_data_value('author_xchan') != $this->get_data_value('owner_xchan'))) { |