diff options
author | Friendika <info@friendika.com> | 2011-10-05 19:16:05 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-05 19:16:05 -0700 |
commit | 7d6a67f9032295dc677e2aa6c0648938a3cf3199 (patch) | |
tree | 228832377147dbcadb5f5a8c361e9cb68dcafeb4 /include/conversation.php | |
parent | 7df6cb850efd323e03ea329957273f7d1e3c0323 (diff) | |
download | volse-hubzilla-7d6a67f9032295dc677e2aa6c0648938a3cf3199.tar.gz volse-hubzilla-7d6a67f9032295dc677e2aa6c0648938a3cf3199.tar.bz2 volse-hubzilla-7d6a67f9032295dc677e2aa6c0648938a3cf3199.zip |
mostly cosmetic changes to make DB tables accurately reflect the conversation members
Diffstat (limited to 'include/conversation.php')
-rw-r--r-- | include/conversation.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/conversation.php b/include/conversation.php index 10b34ebe6..18f6d080b 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -540,7 +540,7 @@ function conversation(&$a, $items, $mode, $update) { '$osparkle' => $osparkle, '$sparkle' => $sparkle, '$title' => template_escape($item['title']), - '$ago' => ((($item['app']) && ($item['id'] == $item['parent'])) ? sprintf( t('%s from %s'),relative_date($item['created']),$item['app']) : relative_date($item['created'])), + '$ago' => (($item['app']) ? sprintf( t('%s from %s'),relative_date($item['created']),$item['app']) : relative_date($item['created'])), '$lock' => $lock, '$location' => template_escape($location), '$indent' => $indent, |