Quote:
Originally Posted by lasto
church media one request if possible - can this be set to ignore zero posters ?
|
Yep. I added that and a few other options to mine.
In birthday.php find:
Code:
$birthdays = $DB_site->query("
SELECT username, email, languageid, birthday, userid
Replace it with:
Code:
$birthdays = $DB_site->query("
SELECT username, email, languageid, posts, userid, birthday
Find:
Code:
$emails .= iif($emails, ', ');
$emails .= $userinfo['username'];
Below it add:
Code:
$posts = $userinfo[posts];
Find:
Code:
// Create Birthday Thread Hack
Below it add:
You can change the "1" in the code above to whatever you want the minium posts for birthday threads to be
Find:
Code:
// End Create Birthday Thread Hack
Above it add:
If you also want to limit the birthday threads & emails to users who have visited the site within the time set in your admin panel for showing birthdays on forum home do this:
In birthday.php find:
Code:
$birthdays = $DB_site->query("
Above it add:
Code:
if ($vboptions['birthdaydatecut'])
{
$datecut = TIMENOW - (intval($vboptions['birthdaydatecut']) * 86400);
$activitycut = "AND lastactivity >= $datecut";
}
else
{
$activitycut = '';
}
Find:
Code:
(options & $_USEROPTIONS[adminemail]) AND
usergroupid IN ($ids)
");
Replace it with:
Code:
(options & $_USEROPTIONS[adminemail]) AND
usergroupid IN ($ids) $activitycut
");