Hi Cheryl,
This took me about 5 minutes and helps all LMP owners so don't worry about payment.
To implement it, do this:
Open dailymail.php and
after this line (near line 26):
if ($isadmin == 'true' || $islogged == 'true'){
Add this:
// check for daily-pre-xtra.php
if(file_exists('./daily-pre-xtra.php')){
include('./daily-pre-xtra.php');
mysql_select_db($sqldb);
}
Next, create a new file "daily-pre-xtra.php" and put it in your main ListMail folder. It should contain the code I mentioned previously, wrapped in PHP tags, ie:
<?php// skip dailymail days based on YMD$ymd = date("Y-m-d");if($ymd=='2007-12-25') exit;elseif($ymd=='2007-12-31') exit;elseif($ymd>'2008-01-01' && $ymd<='2008-01-07') exit; // first 7 days of january?>
I have added the include to future updates.
Regards