diff --git a/r2/r2/lib/template_helpers.py b/r2/r2/lib/template_helpers.py
index b781525ec..ae114d498 100755
--- a/r2/r2/lib/template_helpers.py
+++ b/r2/r2/lib/template_helpers.py
@@ -227,13 +227,13 @@ def comment_label(num_comments=None):
if not num_comments:
# generates "comment" the imperative verb
com_label = _("comment {verb}")
- com_cls = 'comments empty'
+ com_cls = 'comments empty may-blank'
else:
# generates "XX comments" as a noun
com_label = ungettext("comment", "comments", num_comments)
com_label = strings.number_label % dict(num=num_comments,
thing=com_label)
- com_cls = 'comments'
+ com_cls = 'comments may-blank'
return com_label, com_cls
def replace_render(listing, item, render_func):
diff --git a/r2/r2/templates/link.html b/r2/r2/templates/link.html
index 6dd657f80..719744730 100755
--- a/r2/r2/templates/link.html
+++ b/r2/r2/templates/link.html
@@ -42,7 +42,7 @@
%def>
<%def name="make_link(name, css_class, tabindex=0)">
-
${plain_link(thing.subreddit.name, thing.subreddit_path, sr_path = False,
- cname = False, _class = "subreddit hover",
- target='_blank' if thing.newwindow else '')}
+ cname = False, _class = "subreddit hover may-blank")}
%def>
<%def name="midcol(display=True, cls = '')">
diff --git a/r2/r2/templates/link.htmllite b/r2/r2/templates/link.htmllite
index 9223386db..61e899cca 100644
--- a/r2/r2/templates/link.htmllite
+++ b/r2/r2/templates/link.htmllite
@@ -62,7 +62,7 @@
%if c.site.link_flair_position == 'left' and thing.flair_text:
${flair()}
%endif
-
|
%endif
-