1
0
mirror of https://github.com/e107inc/e107.git synced 2025-03-14 01:19:44 +01:00

correct display of Last Post info

#FIX 4715
This commit is contained in:
Jimako 2022-03-29 10:47:58 +02:00 committed by GitHub
parent a4b4d75e29
commit ec8108338b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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'])