mirror of
https://github.com/friendica/friendica
synced 2025-04-27 12:30:11 +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 = [];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue