Fix request.user==None error
authorElrond <elrond+mediagoblin.org@samba-tng.org>
Fri, 13 Jan 2012 22:38:21 +0000 (23:38 +0100)
committerElrond <elrond+mediagoblin.org@samba-tng.org>
Fri, 13 Jan 2012 22:42:33 +0000 (23:42 +0100)
If one isn't logged in and views the profile of a user
without media, one gets a problem, because request.user is
None and has no _id attribute.

Fix this.

mediagoblin/templates/mediagoblin/user_pages/user.html

index 0937f97a02f69e32305cad7ed9d1f5e8050bd02a..d3b4021d3c1f080d6917f2e87e94211dcbdb7b36 100644 (file)
         {% include "mediagoblin/utils/feed_link.html" %}
       </div>
     {% else %}
-      {% if request.user._id == user._id %}
+      {% if request.user and (request.user._id == user._id) %}
         <div class="profile_showcase empty_space">
           <p>
             {% trans -%}