I'm using the Rating mode in my Pligg installation. Since the ratings are based on an average, as soon as a URL is submitted it's already a 5/5. I would like to change the initial vote that's cast to something other than 10, like 5 or even 0.
I've been digging through submit.php, link.php, and votes.php, but I can't find out where the initial submission vote is inserted into the DB. The only thing I've found is the "insert_vote" function, which is declared as
Code:
function insert_vote($user=0, $value=10)
Does this function insert that initial vote? If I change the default value to something other than 10, will that only affect the first submission vote?
Thanks