mirror of
https://github.com/friendica/friendica
synced 2024-11-10 02:22:55 +00:00
Fix undefined variables in wall_thread.tpl
- Remove unused "num_comments_text" template variable - Remove unused "item.postops" template variable mention
This commit is contained in:
parent
da2ce5c4f4
commit
2c6bf754d5
3 changed files with 6 additions and 6 deletions
|
@ -3020,7 +3020,7 @@ class Item
|
|||
];
|
||||
|
||||
if (!empty($item['plink'])) {
|
||||
$ret["href"] = DI::baseUrl()->remove($item['plink']);
|
||||
$ret['href'] = DI::baseUrl()->remove($item['plink']);
|
||||
$ret["title"] = DI::l10n()->t('link to source');
|
||||
}
|
||||
} elseif (!empty($item['plink']) && ($item['private'] != self::PRIVATE)) {
|
||||
|
@ -3028,6 +3028,7 @@ class Item
|
|||
'href' => $item['plink'],
|
||||
'orig' => $item['plink'],
|
||||
'title' => DI::l10n()->t('link to source'),
|
||||
'orig_title' => DI::l10n()->t('Link to source'),
|
||||
];
|
||||
} else {
|
||||
$ret = [];
|
||||
|
|
|
@ -427,6 +427,8 @@ class Post
|
|||
$tmp_item = [
|
||||
'template' => $this->getTemplate(),
|
||||
'type' => implode("", array_slice(explode("/", $item['verb']), -1)),
|
||||
'comment_firstcollapsed' => false,
|
||||
'comment_lastcollapsed' => false,
|
||||
'suppress_tags' => DI::config()->get('system', 'suppress_tags'),
|
||||
'tags' => $tags['tags'],
|
||||
'hashtags' => $tags['hashtags'],
|
||||
|
@ -543,10 +545,7 @@ class Post
|
|||
}
|
||||
}
|
||||
|
||||
if ($this->isToplevel()) {
|
||||
$result['total_comments_num'] = "$total_children";
|
||||
$result['total_comments_text'] = DI::l10n()->tt('comment', 'comments', $total_children);
|
||||
}
|
||||
$result['total_comments_num'] = $this->isToplevel() ? $total_children : 0;
|
||||
|
||||
$result['private'] = $item['private'];
|
||||
$result['toplevel'] = ($this->isToplevel() ? 'toplevel_item' : '');
|
||||
|
|
|
@ -155,7 +155,7 @@
|
|||
{{/if}}
|
||||
</div>
|
||||
|
||||
<div class="wall-item-location">{{$item.location_html nofilter}} {{$item.postopts}}</div>
|
||||
<div class="wall-item-location">{{$item.location_html nofilter}}</div>
|
||||
|
||||
<div class="wall-item-actions-isevent">
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue