mirror of
https://github.com/e107inc/e107.git
synced 2025-01-16 20:28:28 +01:00
Merge pull request #4723 from Jimmi08/patch-2
Fixes #4715 Forum - correct display of Last Post info
This commit is contained in:
commit
21fa07ec3b
@ -501,6 +501,11 @@
|
||||
|
||||
function subinfo()
|
||||
{
|
||||
if(empty($this->var['thread_total_replies']))
|
||||
{
|
||||
return '';
|
||||
}
|
||||
|
||||
$backtrace = debug_backtrace();
|
||||
$caller = $backtrace[1]['function'];
|
||||
if($this->var['forum_lastpost_info'])
|
||||
@ -622,6 +627,11 @@
|
||||
|
||||
function threadlastpostdata()
|
||||
{
|
||||
if(empty($this->var['thread_total_replies']))
|
||||
{
|
||||
return '';
|
||||
}
|
||||
|
||||
$backtrace = debug_backtrace();
|
||||
$caller = $backtrace[1]['function'];
|
||||
// if($this->var['thread_views'])
|
||||
|
Loading…
x
Reference in New Issue
Block a user