Thanks that worked!
From that link:
From that link:
Quote:I have fixed the error once, by looking in the fileinc / functions_posting.php
// Swap username over if we have a registered user if($quoted_post['userusername']) { $quoted_post['username'] = $quoted_post['userusername']; }
have expanded to
// Swap username over if we have a registered user if($quoted_post['userusername']) { $quoted_post['username'] = $quoted_post['userusername']; } else { if(empty($quoted_post['username'])) { $quoted_post['username'] = htmlspecialchars_uni($lang->guest); } }