Code Monkey
10-16-2005, 08:55 PM
$foruminfo['childlist'] seems to have no value in forumdisplay.php. What's the best way to access that info?
akanevsky
10-16-2005, 09:16 PM
Why, but it does have a value:
$foruminfo['childlist'] = explode(',', $foruminfo['childlist']);
The above line is present around line 373... But after "explode()", it is an array and you should access it accordingly. To find out what the contents are, add
print "<pre>";
print_r($foruminfo['childlist']);
print "</pre>";
Under it.. :)
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.