Having an issue with recommending awards (vB 4.0.7 and YAAS 4.0.2.1).
When I recommend someone for an award I get an error message
"There's some error when sending your award request. Please contact site's administrator for assistant."
However in the award requests page - the recommendation is there for me to approve. So it has worked, but something has gone wrong somewhere...
Have gone through every usergroup I'm a member of and ensured that can recommend is set to Yes for all of them..
Would really like to sort this out so I can roll the mod out to my users.. Don't want to do that until it's sorted 'cos I'll just get inundated with PMs about it not working....
Any thoughts where to look? what to do?
TIA
EDIT - Fixed it myself.
I didn't want to PM, or email a user on submission, or use a thread or forum - so if nothing was set it decided there was a problem.
I made the following change to "recommend_award.php"
Find
Code:
if ($award_send > 0)
{
$errormessage = $vbphrase['award_request_completed'];
}
Before that add
Code:
if (empty($vbulletin->options['award_request_formemailaddress'])
&& empty($vbulletin->options['award_request_formpmname'])
&& ($vbulletin->options['award_request_formreplythreadid'] == 0)
&& ($vbulletin->options[award_request_formforumid] == 0))
{
$award_send += 10;
}
Works a charm

Now rolling it out fully to the forum users