If you replicate (copy) between
PHP Code:
// ###################### Start get daily #######################
if ($action=="getdaily") {
.
.
.
.
.
.
.
.
.
.
// ###################### Start posts by user x #######################
in search.php into right after that section and in the replica change:
1-
PHP Code:
if ($action=="getdaily") {
AS
PHP Code:
if ($action=="getmidnight") {
2-
PHP Code:
$datesql=" AND thread.lastpost>=".(time() - (24 * 60 *60 * $days));
AS:
PHP Code:
$datesql=" AND thread.lastpost>=". (mktime(0,0,0, date("m"), date("d"), date("Y")));
it should work when you call the search.php with "&action=getmidnight" variable..
Himm.. Too complex?