hmm i didnt see much of a difference in the code other than
the sql call for $_REQUEST['do'] == 'main' is below
Code:
$categories_get = $vbulletin->db->query_read("
SELECT *
FROM " . TABLE_PREFIX . "vbjournal_categories
ORDER BY display ASC
");
while ($category = $vbulletin->db->fetch_array($categories_get)){
$totalcats ++;
eval('$categories .= "' . fetch_template('vbjournal_categorybit') . '";');
eval('$vcategories .= "' . fetch_template('vbjournal_vcategorybit') . '";');
}
the one for $_REQUEST['do'] == 'category'
Code:
$categories_get = $vbulletin->db->query_read("
SELECT *
FROM " . TABLE_PREFIX . "vbjournal_categories
ORDER BY display ASC
");
while ($category = $vbulletin->db->fetch_array($categories_get)){
$totalcats ++;
eval('$vcategories .= "' . fetch_template('vbjournal_vcategorybit') . '";');
}
I must be looking at the wrong spot or something can you tell me what to edit for the time being until the sub cats are integrated? That would be great