Hi Richard,
The code is in admin.php
$date = sprintf("%s %s%04d", date("D, j M Y H:i:s"), $tzs, $tz);
Now, do you want the -same- time on all messages? We could do this as follows:
To increase the time by 1 hour...
First add this:
$mytime = mktime(date("Y"),date("m"),date("d"),date("H"),date("i"),date("s"));
just after...
// queue loop !!!
Then change this:
$date = sprintf("%s %s%04d", date("D, j M Y H:i:s"), $tzs, $tz);
to this:
$date = sprintf("%s %s%04d", date("D, j M Y H:i:s",$mytime), $tzs, $tz);
If you don't want the same time on all messages and want to increase it on-the-fly, then ignore step 1 and just change this:
$date = sprintf("%s %s%04d", date("D, j M Y H:i:s"), $tzs, $tz);
to this (+1hr):
$date = sprintf("%s %s%04d", date("D, j M Y H:i:s",mktime(date("Y"),date("m"),date("d"),date("H")+1,date("i"),date("s"))), $tzs, $tz);
Regards