Quote:
Originally Posted by jilly
On my board, anonymous rep is not turned on, and so members want to see who gave them the old rep comments in their archive. I tried setting a much older date for the start of 'anonymous' rep, like back when my board started - it started in April 2001 so I set the date to May 2001 - but it does not 'stick' - i hit save, and each time it clears it out of the options area in the admincp editing area.
How can I make it so that my users CAN see the names of who gave them all reputation?
|
I just ran into this, and here is what I did to fix it,
1) Disable any duplicate plugins (it might have been my site, but two or three plugins had duplicates)
2) Edit the "Convert Fancy Admin Options" plugin, and change this
PHP Code:
if ($oldsetting['varname'] == 'screp_anondate')
{
$vbulletin->GPC['setting']['screp_anondate'] = gmmktime(0, 0, 0, $vbulletin->GPC['setting']['screp_anondate']['startmonth'], $vbulletin->GPC['setting']['screp_anondate']['startday'], $vbulletin->GPC['setting']['screp_anondate']['startyear']);
}
to this
PHP Code:
if ($oldsetting['varname'] == 'screp_anondate')
{
$settings[$oldsetting['varname']] = $vbulletin->GPC['setting']['screp_anondate'] = gmmktime(0, 0, 0, $vbulletin->GPC['setting']['screp_anondate']['startmonth'], $vbulletin->GPC['setting']['screp_anondate']['startday'], $vbulletin->GPC['setting']['screp_anondate']['startyear']);
}
Note I added a simple [minicode]$settings[$oldsetting['varname']] = [/minicode] to the already existing assignment not to muck any other dependencies on it.
This will fix the "N/A"s showing up where they aren't supposed to.
Cheers