MyBB Community Forums

Full Version: fix Guest lastposter
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
If Guest is last poster forum says 'Last Post: ' (nobody, just a space)
SS:
[attachment=40881]
Should say 'Last post: Guest' (Gość in Polish)
SS:
[attachment=40882]

Easy to FIX:

forumdisplay.php:

line 1270 replace
if(!$lastposteruid && !$thread['lastposter'])
to
if(!$lastposteruid)


inc/functions_forumlist.php

line 115 replace

if(!$private_forums[$forum['fid']]['lastposteruid'] && !$private_forums[$forum['fid']]['lastposter'])
to

if(!$private_forums[$forum['fid']]['lastposteruid'])

and line 131 replace

if(!$forum['lastposteruid'] && !$forum['lastposter'])
to
if(!$forum['lastposteruid'])