Click anywhere to close this dialog

Farewell

Great is the art of beginning, but greater is the art of ending
Henry Wadsworth Longfellow

I announce that I cease all development and activity in the programming universe indefinitely. My career has reached the turning point I was not expecting for at least another year, leaving me highly off guard and without laid-out plans for this hobby's continuity. I have begun a 5-year residency program in Neurosurgery which is clearly not compatible, time-wise, with programming.

I gave in all my passion for developing, and you gave me back your loyalty and trust, even when I did not deserve that much. Now it is the time for payback. I release all my present and past work as Open Source software, in the hope some talented developer will continue maintaining and expanding my vision of a modern, sleek forum software. The intrinsic flexibility of MyBB is the true hidden gem of an otherwise outdated codebase; I do hope the project can continue and be updated complying to the latest coding standards.

I hereby thank Euan, kawaii, andrewjs18, Ben, Matt, Omar G., effone, Eric J., Devilshakerz, Wildcard, JordanMussi and all the other team members I have had the opportunity to work with when I was a MyBB team member. I thank Tomm M, my mentor, who inspired me to pick up coding with his piece-of-art plugins. And finally, I thank all of you MyBBoost subscribers who have helped me getting through my toughest university years economically.

Yours sincerely, Filippo

Avatar not shown and Short time format want

15 Jun 2020
#1
This issue is marked as solved
In conversations, Avatar is not shown for members other than Administrators.
In Last message table, I don't need time.

Please help.
Shade 14 Jul 2020
#2
Avatars are grabbed from the _users table. Double check if these users have an avatar set, and if they don't, I suggest you to use a default avatar plugin such as Letter Avatars 1.0.2.

As for the time, that row uses the my_date("relative") format, which uses both date and time. If you want just the date, you can find in inc/plugins/symposium.php, line 789:

$date my_date('relative'$conversation['lastdateline']); 
And change it to:

$date my_date($mybb->settings['dateformat'], $conversation['lastdateline']); 
Beware though, this will strip off the "Today" and "Yesterday" labels.