I figured it out! In forums/forumdisplay.php, go to about line 813 and find:
PHP Code:
//remove html to stop the breaking of the meta description
$foruminfo['description'] = strip_tags($foruminfo['description']);
Add this line in between those two lines:
PHP Code:
$foruminfo['fulldescription'] = $foruminfo['description'];
so it looks like this:
PHP Code:
//remove html to stop the breaking of the meta description
$foruminfo['fulldescription'] = $foruminfo['description'];
$foruminfo['description'] = strip_tags($foruminfo['description']);
Now just use $foruminfo['fulldescription'] in your templates and it'll show it all!