Quote:
Originally Posted by sutto
Hi Dom,
Found a small bug...
I've created a number of team categories.. when editing a team, it automatically defaults the category selection to the first option in the drop down box.
Are you able to make it so when editing the display value is the value previously entered and it only updates when physically changed?
|
Quick fix:
Find in teams.php
PHP Code:
if ($vbulletin->options['tmnt_allow_uncat'])
{
$categories .= '<option value="0"></option>';
}
Below add
PHP Code:
$select_catid = $team['catid'];