(2017-07-04, 09:45 AM)Darkrad Wrote: Yeah I am doing from there too.
I checked if its turkish language pack related thing, but when I change my language to English I still see "<span title="">Yesterday</span>" instead of m-d-Y order.
It looks like it's related to time changes in 1.8.12, MyAlerts was having the same issue and I had to change some codes too.
Change in MyBB -> https://github.com/mybb/mybb/commit/da0f...6b2d946a39
MyAlerts change -> https://github.com/MyBBStuff/MyAlerts/co...3dfaba8089
This quick fix should help:
Open the main plugin file (ROOT/inc/plugins/thankyoulike.php) to edit and search for (#962/#963):
$datedisplay_next = $mybb->settings[$prefix.'showdt'] == "nexttoname" ? "<span class='smalltext'> (".my_date($mybb->settings[$prefix.'dtformat'], $tyl['dateline']).")</span>" : "";
$datedisplay_title = $mybb->settings[$prefix.'showdt'] == "astitle" ? "title='".my_date($mybb->settings[$prefix.'dtformat'], $tyl['dateline'])."'" : "";
Replace both lines with:
$datedisplay_next = $mybb->settings[$prefix.'showdt'] == "nexttoname" ? "<span class='smalltext'> (".date($mybb->settings[$prefix.'dtformat'], $tyl['dateline']).")</span>" : "";
$datedisplay_title = $mybb->settings[$prefix.'showdt'] == "astitle" ? "title='".date($mybb->settings[$prefix.'dtformat'], $tyl['dateline'])."'" : "";
Save changes and reload forum page