From 51e4edadb149e1e11ebd34508916a214643b87c1 Mon Sep 17 00:00:00 2001 From: evazion Date: Mon, 23 Sep 2019 19:22:00 -0500 Subject: [PATCH] Fix upgrade notice conditional (fixup e98db8a). --- app/views/layouts/default.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/layouts/default.html.erb b/app/views/layouts/default.html.erb index 3d4c74aa7..a68d9b1a5 100644 --- a/app/views/layouts/default.html.erb +++ b/app/views/layouts/default.html.erb @@ -119,7 +119,7 @@
- <% unless !CurrentUser.is_anonymous? && !CurrentUser.is_gold? && cookies[:hide_upgrade_account_notice].blank? && params[:action] != "upgrade_information" %> + <% if !CurrentUser.is_anonymous? && !CurrentUser.is_gold? && cookies[:hide_upgrade_account_notice].blank? && params[:action] != "upgrade_information" %> <%= render "users/upgrade_notice" %> <% end %>