diff options
author | Dries Buytaert <dries@buytaert.net> | 2002-11-08 11:20:55 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2002-11-08 11:20:55 +0000 |
commit | 2fe5a68baf09e6ebbc6abdf55d45df93a6e338d8 (patch) | |
tree | 61fe9c4a6ac07f3c321aeee87be0087586ac7a4c /modules/forum | |
parent | 1ed032bbf4cf35658c8679133579c1d2b9df137f (diff) | |
download | brdo-2fe5a68baf09e6ebbc6abdf55d45df93a6e338d8.tar.gz brdo-2fe5a68baf09e6ebbc6abdf55d45df93a6e338d8.tar.bz2 |
- Removed the hard-coded font scaling.
Diffstat (limited to 'modules/forum')
-rw-r--r-- | modules/forum/forum.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/forum/forum.module b/modules/forum/forum.module index 4f5d0f5cb..02619f6fe 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -560,7 +560,7 @@ function forum_forum_list($forums, $parents, $tid) { if ($user->uid) $new_topics = $forum->num_topics - $forum->old_topics; $icon = _forum_get_folder_icon($new_topics); $output .= " <tr><td> </td><td>$icon</td>"; - $output .= "<td><table border=\"0\"><tr><td width=\"". ($forum->depth * 20) ."\"> </td><td>".lm(check_output($forum->name), array("mod" => "forum", "tid" => $forum->tid))."<div style=\"padding-top: 5px; font-size: 80%;\">". check_output($forum->description, 1); + $output .= "<td><table border=\"0\"><tr><td width=\"". ($forum->depth * 20) ."\"> </td><td>".lm(check_output($forum->name), array("mod" => "forum", "tid" => $forum->tid))."<div style=\"padding-top: 5px;\">". check_output($forum->description, 1); $links = array(); if ($forum->last_post) { |