Fix tag list clipboard spacing

This brings back the original behavior of having spaces between the columns when the tag list gets copied to the clipboard (tested in Chrome, Edge, and Firefox).

One caveat: Edge now adds multiple spaces.
This commit is contained in:
im-mi 2016-09-06 22:10:09 -04:00
parent ab33652d70
commit 58096e10c8
1 changed files with 3 additions and 3 deletions

View File

@ -229,13 +229,13 @@ class TagListTheme extends Themelet {
// if($n++) $display_html .= "\n<br/>";
if(!is_null($config->get_string('info_link'))) {
$link = html_escape(str_replace('$tag', $tag, $config->get_string('info_link')));
$display_html .= ' <td class="tag_info_link_cell"><a class="tag_info_link'.$tag_category_css.'" '.$tag_category_style.'href="'.$link.'">?</a></td>';
$display_html .= '<td class="tag_info_link_cell"> <a class="tag_info_link'.$tag_category_css.'" '.$tag_category_style.'href="'.$link.'">?</a></td>';
}
$link = $this->tag_link($row['tag']);
$display_html .= ' <td class="tag_name_cell"><a class="tag_name'.$tag_category_css.'" '.$tag_category_style.'href="'.$link.'">'.$h_tag_no_underscores.'</a></td>';
$display_html .= '<td class="tag_name_cell"> <a class="tag_name'.$tag_category_css.'" '.$tag_category_style.'href="'.$link.'">'.$h_tag_no_underscores.'</a></td>';
if($config->get_bool("tag_list_numbers")) {
$display_html .= " <td class='tag_count_cell'><span class='tag_count'>$count</span></td>";
$display_html .= "<td class='tag_count_cell'> <span class='tag_count'>$count</span></td>";
}
return array($category, $display_html);