Hi Cl?ment,
My forum is bilingual, english and french.
When I switch to french language, the date displays as
%20/%08/%2010 %0606%Aug
That's because you set the Locale as false in the vbdate() call (set to true by default)
To fix that I replaced all (except for archives where you merged date and time, so locale is not necessary)
PHP Code:
$date = vbdate($this->registry->options['dateformat'], $chat['dateline'],true, false);
with
PHP Code:
$date = vbdate($this->registry->options['dateformat'], $chat['dateline'],true);
I did the same for time.