Quote:
Originally Posted by Vossi
Did you change the numeric values in the category mangement?
I'll let you know later this evening and print the lines to change for you 
|
i find this code in admin_vblinklist.php
PHP Code:
$parentcats = array(
'-1' => $vbphrase['none']
);
foreach ($vbulletin->vblinklist['categories'] AS $catid => $currentcat)
{
if ($catid == $cat['id'] OR $currentcat['parentid'] != -1)
{
continue;
}
$parentcats["$catid"] = $currentcat['name'];
}
print_select_row($vbphrase['vblinklist_parent_cat'], 'cat[parentid]', $parentcats, $cat['parentid']);
how can i change in codes to show all categories for choice sub-category for other sub-category?