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:
Hypolite Petovan 2021-05-10 18:59:09 -04:00
parent da2ce5c4f4
commit 2c6bf754d5
3 changed files with 6 additions and 6 deletions

View file

@ -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 = [];