The "days joined" setting is ignored when it comes to guests.
Manual Patch:
Open applications/gms/sources/Message/Message.php
Find:
/* Above days joined number? */
if( $this->days_joined && \IPS\Member::loggedIn()->joined->diff( \IPS\DateTime::create() )->days >= $this->days_joined )
{
return FALSE;
}
Replace With:
/* Above days joined number? */
if( !\IPS\Member::loggedIn()->member_id OR ( $this->days_joined && \IPS\Member::loggedIn()->joined->diff( \IPS\DateTime::create() )->days >= $this->days_joined ) )
{
return FALSE;
}
Save.
Recommended Comments
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.