From 49b1776f6e0e6798024ca667457f7b1f1913a893 Mon Sep 17 00:00:00 2001 From: sliceofcake Date: Sun, 10 Jul 2016 13:25:57 -0700 Subject: [PATCH] removed the inner span that hid the sorting triggers Removed the inner span that was made to hide the sorting trigger elements. It looks like queueindex.css has .asc and .dsc classes that ought to be here, but for now, it's good enough to just show "AscDsc" despite it not looking the best for the time being. I saw no nearby comments explaining why this was done. It was clearly done deliberately in a hasty attempt to amend something. --- templatetags/donation_tags.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/templatetags/donation_tags.py b/templatetags/donation_tags.py index 1528c81e5..060791127 100755 --- a/templatetags/donation_tags.py +++ b/templatetags/donation_tags.py @@ -27,9 +27,7 @@ def sortlink(style, contents, **args): ret.append('"') if style: ret.append(' class="%s"' % style) ret.append('>') - if style: ret.append('') ret.append(contents) - if style: ret.append('') ret.append('') return ''.join(map(unicode,ret))