MyBB Community Forums

Full Version: Fix This Problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hello

i find this problem after upgrade to mybb 1.8.12

[Image: 8936c2c993a94a7caf57441d6ce4af90.jpg]
this problem inĀ 
http://ziuma.com/index.php

How to fix it?
Did you fix it because I don't see it.

If not can you paste your "forumbit_depth2_forum" code.

Admin CP -> Templates & Styles -> Templates -> 'Your Theme" -> Forum Bit Templates -> forumbit_depth2_forum
(2017-05-23, 01:28 PM)Brian. Wrote: [ -> ]Did you fix it because I don't see it.

no, i can't fix this problem
still exist

in last threads or post
see this link
http://ziuma.com/Forum-Area-Bebas
Can you paste your "forumbit_depth2_forum_lastpost" code.
Same problem after upgrading to 1.8.12 now.

Quote:<span class="smalltext">
<a href="{$lastpost_link}" data-lastpost-time="{$lastpost_date}" title="{$full_lastpost_subject}">{$lastpost_subject}</a>
<br />{$lang->by} {$lastpost_profilelink}, {$lastpost_date}</span>

EDIT: Haha, look at the right of the attachment. Same here...
@Cooky regarding the attachment issue, you can try this fix until Official patch / fix becomes available
@ziuma:

In your case you also have to edit the core file /inc/functions_forumlist.php

Search for (#292):
$lastpost_date = my_date('relative', $lastpost_data['lastpost']);

Replace this part with:
//$lastpost_date = my_date('relative', $lastpost_data['lastpost']);
$lastpost_date = date($mybb->settings['dateformat'], $lastpost_data['lastpost']) . " - " . date($mybb->settings['timeformat'], $lastpost_data['lastpost']);
(2017-05-24, 04:08 PM)SvePu Wrote: [ -> ]@ziuma:

In your case you also have to edit the core file /inc/functions_forumlist.php

Search for (#292):
$lastpost_date = my_date('relative', $lastpost_data['lastpost']);

Replace this part with:
//$lastpost_date = my_date('relative', $lastpost_data['lastpost']);
$lastpost_date = date($mybb->settings['dateformat'], $lastpost_data['lastpost']) . " - " . date($mybb->settings['timeformat'], $lastpost_data['lastpost']);

That worked... thanks!!!! Heart
solved, thank you @SvePu
i also get this problem in

alert

[Image: 21d39cbf18f04afd9cffe9c374d04103.jpg]
Pages: 1 2