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'])) {
|
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');
|
$ret["title"] = DI::l10n()->t('link to source');
|
||||||
}
|
}
|
||||||
} elseif (!empty($item['plink']) && ($item['private'] != self::PRIVATE)) {
|
} elseif (!empty($item['plink']) && ($item['private'] != self::PRIVATE)) {
|
||||||
|
@ -3028,6 +3028,7 @@ class Item
|
||||||
'href' => $item['plink'],
|
'href' => $item['plink'],
|
||||||
'orig' => $item['plink'],
|
'orig' => $item['plink'],
|
||||||
'title' => DI::l10n()->t('link to source'),
|
'title' => DI::l10n()->t('link to source'),
|
||||||
|
'orig_title' => DI::l10n()->t('Link to source'),
|
||||||
];
|
];
|
||||||
} else {
|
} else {
|
||||||
$ret = [];
|
$ret = [];
|
||||||
|
|
|
@ -427,6 +427,8 @@ class Post
|
||||||
$tmp_item = [
|
$tmp_item = [
|
||||||
'template' => $this->getTemplate(),
|
'template' => $this->getTemplate(),
|
||||||
'type' => implode("", array_slice(explode("/", $item['verb']), -1)),
|
'type' => implode("", array_slice(explode("/", $item['verb']), -1)),
|
||||||
|
'comment_firstcollapsed' => false,
|
||||||
|
'comment_lastcollapsed' => false,
|
||||||
'suppress_tags' => DI::config()->get('system', 'suppress_tags'),
|
'suppress_tags' => DI::config()->get('system', 'suppress_tags'),
|
||||||
'tags' => $tags['tags'],
|
'tags' => $tags['tags'],
|
||||||
'hashtags' => $tags['hashtags'],
|
'hashtags' => $tags['hashtags'],
|
||||||
|
@ -543,10 +545,7 @@ class Post
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($this->isToplevel()) {
|
$result['total_comments_num'] = $this->isToplevel() ? $total_children : 0;
|
||||||
$result['total_comments_num'] = "$total_children";
|
|
||||||
$result['total_comments_text'] = DI::l10n()->tt('comment', 'comments', $total_children);
|
|
||||||
}
|
|
||||||
|
|
||||||
$result['private'] = $item['private'];
|
$result['private'] = $item['private'];
|
||||||
$result['toplevel'] = ($this->isToplevel() ? 'toplevel_item' : '');
|
$result['toplevel'] = ($this->isToplevel() ? 'toplevel_item' : '');
|
||||||
|
|
|
@ -155,7 +155,7 @@
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</div>
|
</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 class="wall-item-actions-isevent">
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue