AmandaB
08-15-2008, 08:47 PM
I've posted a few times and no one has a good answer. I need to change minimum posts per day day THREADs per day. I just need to do this for my arcade as people are coming on and giving a few half-hearted posts to play in the arcade all day. If I can change this to threads atleast I will be generating new material.
Does one know how to do this? The last thing I want to do is go into the php and mess up a variable.
MrZeropage
08-20-2008, 08:20 PM
please try this:
open /arcade/modules/mod_arcade.php
search for if( $this->user['ppd_require'] )
{
$posts_today_time = mktime(0,0,0,date("m"),date("d"),date("Y"));
$DB->query("SELECT COUNT(postid) AS amount FROM ibf_post WHERE dateline>".$posts_today_time." AND userid=".$this->user['id']);
$posts_today = $DB->fetch_row();
$this->user['posts_today'] = $posts_today['amount'];
}
replace with
if( $this->user['ppd_require'] )
{
$posts_today_time = mktime(0,0,0,date("m"),date("d"),date("Y"));
$DB->query("SELECT COUNT(threadid) AS amount FROM ibf_thread WHERE dateline>".$posts_today_time." AND postuserid=".$this->user['id']);
$posts_today = $DB->fetch_row();
$this->user['posts_today'] = $posts_today['amount'];
}
Just modified "out of the brain", untested - but I guess this is a good try ;)
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.