Quote:
Originally Posted by Viks
thanks memobug for helping me out with calender issue.
I have noticed that for some odd reason, Commbull is also picking up threads older than the cut off date i specify during mailout!!
is someone else also having this issue??
not sure wat is wrong
vik
|
As you've found, commbull is designed to select threads opened or replied to during the reporting period. I didn't like that too much because I keep getting the same ancient threads, particularly in the Most Replies and Most Views areas, so I changed it to use only threads started during the reporting period
My commbull.php is pretty hacked up but generally you want to
1. Look for a line that looks like this
Code:
$datesql = "AND (lastpost>$olddate OR dateline>$olddate)";
and replace it with this:
Code:
$datesql = "AND (dateline>$olddate)";
2. You'll also need to check the box in the commbull setup titled "Select Items to include in your mailing.... Only include threads that have been started or replied to since this date? YES
Let me know if this produces the desired result.
Regards,
Matt