PDA

View Full Version : Change which option is autoselected on banning.php


spamgirl
09-28-2011, 12:00 PM
http://turkernation.com/tnmod/banning.php?do=banuser

I'd like to change

<option value="D_7" selected="selected">7 Days (10-05-2011 08:00 AM)</option>

to

<option value="D_7">7 Days (10-05-2011 08:00 AM)</option>

and

<option value="PERMANENT">Permanent - Never Lift Ban</option>

to

<option value="PERMANENT" selected="selected">Permanent - Never Lift Ban</option>

I looked at banning.php and it's all garbledy-gook. I didn't find the word selected at all... so where should I be changing this?

Thank you :)

kh99
09-28-2011, 12:40 PM
Try finding this (around line 367)

// set a default banning period if there isn't one specified
if (empty($vbulletin->GPC['period']))
{
$vbulletin->GPC['period'] = 'D_7'; // 7 days
}



and change the 'D_7' to 'PERMANENT'.

spamgirl
09-28-2011, 12:52 PM
Worked like a charm, thank you!