Just a little notice.
There is a point in line of file "Who-has-read-thread.xml"
Code:
<title>Who Has Read a Thread.</title>
Quote:
Originally Posted by Paul M
Sorry but no, the limit is working as designed and I have no intention of changing it.
|
I think that adding one little option which will be used in IF condition will not brake any functionality.
Now:
Code:
// Set Cutoff Date //
$cutoff = 0;
if ($vbulletin->options['wrtlimit'])
{
$cutoff = TIMENOW - 86400 * $vbulletin->options['wrtlimit'];
}
Will be:
Code:
// Set Cutoff Date //
$cutoff = 0;
if ($vbulletin->options['wrtlimit'] AND $vbulletin->options['wrtlimit_all'])
{
$cutoff = TIMENOW - 86400 * $vbulletin->options['wrtlimit'];
}
I am ready to assist you if you don't have time for this one