From 58096e10c889c5cc7d9cd7c77fe070e9c313c131 Mon Sep 17 00:00:00 2001 From: im-mi Date: Tue, 6 Sep 2016 22:10:09 -0400 Subject: [PATCH] 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. --- ext/tag_list/theme.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/tag_list/theme.php b/ext/tag_list/theme.php index 886f1730..b0607e76 100644 --- a/ext/tag_list/theme.php +++ b/ext/tag_list/theme.php @@ -229,13 +229,13 @@ class TagListTheme extends Themelet { // if($n++) $display_html .= "\n
"; if(!is_null($config->get_string('info_link'))) { $link = html_escape(str_replace('$tag', $tag, $config->get_string('info_link'))); - $display_html .= ' ?'; + $display_html .= ' ?'; } $link = $this->tag_link($row['tag']); - $display_html .= ' '.$h_tag_no_underscores.''; + $display_html .= ' '.$h_tag_no_underscores.''; if($config->get_bool("tag_list_numbers")) { - $display_html .= " $count"; + $display_html .= " $count"; } return array($category, $display_html);