Changeset 1611
- Timestamp:
- 05/31/08 21:24:16 (22 months ago)
- Files:
-
- 1 modified
-
trunk/pylucid/PyLucid/system/context_processors.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pylucid/PyLucid/system/context_processors.py
r1529 r1611 36 36 #___________________________________________________________________________ 37 37 38 if request.user.username != "":38 if hasattr(request, "user") and request.user.username != "": 39 39 # User is logged in 40 40 url = URLs.commandLink("auth", "logout")