mostly cosmetic changes to make DB tables accurately reflect the conversation members
This commit is contained in:
parent
7df6cb850e
commit
7d6a67f903
4 changed files with 11 additions and 7 deletions
|
@ -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,
|
||||
|
|
|
@ -613,7 +613,6 @@ function diaspora_comment($importer,$xml,$msg) {
|
|||
return;
|
||||
}
|
||||
|
||||
|
||||
if($parent_author_signature) {
|
||||
$owner_signed_data = $guid . ';' . $parent_guid . ';' . $text . ';' . $diaspora_handle;
|
||||
|
||||
|
@ -646,9 +645,9 @@ function diaspora_comment($importer,$xml,$msg) {
|
|||
$datarray['created'] = $datarray['edited'] = datetime_convert();
|
||||
$datarray['private'] = $parent_item['private'];
|
||||
|
||||
$datarray['owner-name'] = $contact['name'];
|
||||
$datarray['owner-link'] = $contact['url'];
|
||||
$datarray['owner-avatar'] = $contact['thumb'];
|
||||
$datarray['owner-name'] = $parent_item['owner-name'];
|
||||
$datarray['owner-link'] = $parent_item['owner-link'];
|
||||
$datarray['owner-avatar'] = $parent_item['owner-avatar'];
|
||||
|
||||
$datarray['author-name'] = $person['name'];
|
||||
$datarray['author-link'] = $person['url'];
|
||||
|
|
|
@ -183,6 +183,7 @@ function notifier_run($argv, $argc){
|
|||
// We will only send a "notify owner to relay" or followup message if the referenced post
|
||||
// originated on our system by virtue of having our hostname somewhere
|
||||
// in the URI, AND it was a comment (not top_level) AND the parent originated elsewhere.
|
||||
|
||||
// if $parent['wall'] == 1 we will already have the parent message in our array
|
||||
// and we will relay the whole lot.
|
||||
|
||||
|
@ -357,6 +358,7 @@ function notifier_run($argv, $argc){
|
|||
continue;
|
||||
|
||||
$contact = get_item_contact($item,$contacts);
|
||||
|
||||
if(! $contact)
|
||||
continue;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue