T
tenants
Guest
I just hit a little snag, I think it's useful mentioning (even if it's self reference)
If I have stuff in the database, this will work fine as a query:
Code:
But this returns null:
Code:
Read more
Continue reading...
If I have stuff in the database, this will work fine as a query:
Code:
Code:
$expiredTime = \XF::$time - (7 * 86400);
$projectInvite = \XF::app()->finder('Tenants\ToolsAdmin:ProjectInviteEntity')
->where('created_date', '>', $expiredTime) // 7 day expiration
->fetchOne(); // something returned
But this returns null:
Code:
Code:
$expiredTime = \XF::$time - (7 * 86400);
$projectInvite =...
Read more
Continue reading...