MyBB Community Forums

Full Version: Current time: [solved]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do i edit the current time so it only shows the time and not the date.
thank you.
In global.php, find:
$lang->welcome_current_time = $lang->sprintf($lang->welcome_current_time, $datenow.', '.$timenow);

Replace with:
$lang->welcome_current_time = $lang->sprintf($lang->welcome_current_time, $timenow);

Thank you.