diff options
author | Azul <azul@riseup.net> | 2016-05-13 16:23:10 +0200 |
---|---|---|
committer | Azul <azul@riseup.net> | 2016-05-14 10:47:35 +0200 |
commit | a1b494e334406660a1f49fb7de9b043493809640 (patch) | |
tree | 16b86b0d85e01cb783ca79caa37b1c3a183ef7bd /app | |
parent | aeb0f39362b2195d4aec418349538b5f8443f693 (diff) |
ensure invalid user ids still render the ticket form
We still have strange urls requested like
/pt/users/AnonymousUser.../tickets/new
Not sure where they are coming from - but this should make sure we
respond with sth. meaningful instead of erroring out.
Conflicts:
app/views/layouts/_content.html.haml
Diffstat (limited to 'app')
-rw-r--r-- | app/views/layouts/_content.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/layouts/_content.html.haml b/app/views/layouts/_content.html.haml index 21d2e12..8e0bfbc 100644 --- a/app/views/layouts/_content.html.haml +++ b/app/views/layouts/_content.html.haml @@ -7,7 +7,7 @@ - else - content = yield -- if @show_navigation +- if @show_navigation && @user .col-md-2 = render 'layouts/navigation' .col-md-10 |