
Martin Latter - 2016-08-07 17:58:46 -
In reply to message 3 from Stefan Drugda2
In cchat.class.php change:
MESSAGE_BUFFER = 3600, # 1 hour of messages displayed
to
MESSAGE_BUFFER = 172800, # 3600 seconds * 24 hours * 2, for 2 days
or, replace the MESSAGE_BUFFER constant with a private static variable, and do the calculation dynamically, as in:
$message_buffer = 3600 * 24 * $number_of_days;