In case anyone wants to make it so only admins can settle bets (I know I needed that and I saw someone else post way back the same thing).
It's an ugly fix in that I didn't add any
options to the actual mod. I just hardcoded in so that it would
always be like that.
pretty easy.
plugin:
vBookie: Show Events in Showthread
find
PHP Code:
if ( ($eventinfo['item_pay_after'] < TIMENOW) )
{
if ($eventinfo['item_status'] == 'CLOSED')
{
if ($show['editevent'])
{
$showsettlebutton = 1; // only show settlement button if it's someone that can edit this event
}
}
else if ($eventinfo['item_status'] == 'SETTLED')
{
$showresults = 1;
}
}
replace with
PHP Code:
if ( ($eventinfo['item_pay_after'] < TIMENOW) )
{
if ($eventinfo['item_status'] == 'CLOSED')
{
$userinfo = fetch_userinfo($vbulletin->userinfo['userid']);
if ($show['editevent'] AND ($userinfo['usergroupid'] == "6"))
{
$showsettlebutton = 1; // only show settlement button if it's someone that can edit this event
}
}
else if ($eventinfo['item_status'] == 'SETTLED')
{
$showresults = 1;
}
}