Quote:
Originally Posted by VBDev
Ho ! Yes I changed that in 2.1.0 and didn't remember there was an impact on the counters update.
Marked as bug for the next version.
|
Hey, is this correct to fix it like this?
/admincp/mgc_cb_evo.php
PHP Code:
$vbulletin->db->query_first("SELECT MIN(dateline) AS start FROM " . TABLE_PREFIX . "mgc_cb_evo_chat WHERE isthreadwarning='0' AND ispostwarning='0'");
Replace by
PHP Code:
$vbulletin->db->query_first("SELECT MIN(dateline) AS start FROM " . TABLE_PREFIX . "mgc_cb_evo_chat WHERE iswarning='0'");
Or is there more that have to be changed?