Skip to content
Snippets Groups Projects
Commit 2fe5a68b authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Removed the hard-coded font scaling.
parent 1ed032bb
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -560,7 +560,7 @@ function forum_forum_list($forums, $parents, $tid) { ...@@ -560,7 +560,7 @@ function forum_forum_list($forums, $parents, $tid) {
if ($user->uid) $new_topics = $forum->num_topics - $forum->old_topics; if ($user->uid) $new_topics = $forum->num_topics - $forum->old_topics;
$icon = _forum_get_folder_icon($new_topics); $icon = _forum_get_folder_icon($new_topics);
$output .= " <tr><td>&nbsp;</td><td>$icon</td>"; $output .= " <tr><td>&nbsp;</td><td>$icon</td>";
$output .= "<td><table border=\"0\"><tr><td width=\"". ($forum->depth * 20) ."\">&nbsp;</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) ."\">&nbsp;</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(); $links = array();
if ($forum->last_post) { if ($forum->last_post) {
......
...@@ -560,7 +560,7 @@ function forum_forum_list($forums, $parents, $tid) { ...@@ -560,7 +560,7 @@ function forum_forum_list($forums, $parents, $tid) {
if ($user->uid) $new_topics = $forum->num_topics - $forum->old_topics; if ($user->uid) $new_topics = $forum->num_topics - $forum->old_topics;
$icon = _forum_get_folder_icon($new_topics); $icon = _forum_get_folder_icon($new_topics);
$output .= " <tr><td>&nbsp;</td><td>$icon</td>"; $output .= " <tr><td>&nbsp;</td><td>$icon</td>";
$output .= "<td><table border=\"0\"><tr><td width=\"". ($forum->depth * 20) ."\">&nbsp;</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) ."\">&nbsp;</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(); $links = array();
if ($forum->last_post) { if ($forum->last_post) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment