AndyB
Well-known member
Currently when we use the Search in the navbar:
the Posted by Member drop down is limited to members that have been active within the past 6 months. I think this can be confusing as members that you know exist but do not show.
I can edit the following file Model/User.php file:
by increasing the number, but it would be great if this was an Option setting.
Thank you.
the Posted by Member drop down is limited to members that have been active within the past 6 months. I think this can be confusing as members that you know exist but do not show.
I can edit the following file Model/User.php file:
PHP:
if ($conditions['active_recently'] === true)
{
// general definition of recently active: 6 months
$conditions['active_recently'] = 30 * 6 * 86400;
}
by increasing the number, but it would be great if this was an Option setting.
Thank you.
Upvote
3