aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2011-07-25 15:30:56 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2011-07-25 15:30:56 -0500
commitad74472b597d6a477f6c2e747478417a52327b4b (patch)
tree5be761d56a62ac9d5b1d206b46d9f1c0c4d475dc
parent2684f341f5111fb831fb80e2b3b7ea7401cefc1c (diff)
downloadmediagoblin-ad74472b597d6a477f6c2e747478417a52327b4b.tar.lz
mediagoblin-ad74472b597d6a477f6c2e747478417a52327b4b.tar.xz
mediagoblin-ad74472b597d6a477f6c2e747478417a52327b4b.zip
Now actually apply Velmont's patch instead of just committing it ;)
-rw-r--r--mediagoblin/templates/mediagoblin/user_pages/user.html6
-rw-r--r--user_profile-fix_wrong_nesting.patch17
2 files changed, 3 insertions, 20 deletions
diff --git a/mediagoblin/templates/mediagoblin/user_pages/user.html b/mediagoblin/templates/mediagoblin/user_pages/user.html
index 9d99ac53..a2b85aff 100644
--- a/mediagoblin/templates/mediagoblin/user_pages/user.html
+++ b/mediagoblin/templates/mediagoblin/user_pages/user.html
@@ -42,9 +42,9 @@
<a href={{ request.urlgen(
'mediagoblin.user_pages.atom_feed',
user=user.username) }}>atom feed</a>
- {% else %}
- {# This *should* not occur as the view makes sure we pass in a user. #}
- <p>Sorry, no such user found.<p/>
</div>
+ {% else %}
+ {# This *should* not occur as the view makes sure we pass in a user. #}
+ <p>Sorry, no such user found.<p/>
{% endif %}
{% endblock %}
diff --git a/user_profile-fix_wrong_nesting.patch b/user_profile-fix_wrong_nesting.patch
deleted file mode 100644
index 590f87ff..00000000
--- a/user_profile-fix_wrong_nesting.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff --git a/mediagoblin/templates/mediagoblin/user_pages/user.html b/mediagoblin/templates/mediagoblin/user_pages/user.html
-index 9d99ac5..a2b85af 100644
---- a/mediagoblin/templates/mediagoblin/user_pages/user.html
-+++ b/mediagoblin/templates/mediagoblin/user_pages/user.html
-@@ -42,9 +42,9 @@
- <a href={{ request.urlgen(
- 'mediagoblin.user_pages.atom_feed',
- user=user.username) }}>atom feed</a>
-- {% else %}
-- {# This *should* not occur as the view makes sure we pass in a user. #}
-- <p>Sorry, no such user found.<p/>
- </div>
-+ {% else %}
-+ {# This *should* not occur as the view makes sure we pass in a user. #}
-+ <p>Sorry, no such user found.<p/>
- {% endif %}
- {% endblock %}