# HG changeset patch # User Atul Varma # Date 1272179177 25200 # Node ID 4728c2db6fd695beaedb78558301078ecf5729e7 # Parent cd51aebfbf688786bb4e318b6c0b71891807f373 changed 'Log In' to 'Authenticate' if user is logged in but unauthenticated. diff -r cd51aebfbf68 -r 4728c2db6fd6 js/modules/app.js --- a/js/modules/app.js Sat Apr 24 23:50:23 2010 -0700 +++ b/js/modules/app.js Sun Apr 25 00:06:17 2010 -0700 @@ -70,15 +70,18 @@ "no-login": false, "login": false, "auth-login": false, - "no-auth": false + "no-auth": false, + "no-auth-login": false }; if (user.isLoggedIn) { show["login"] = true; if (user.isAuthenticated) show["auth-login"] = true; - else + else { show["no-auth"] = true; + show["no-auth-login"] = true; + } } else { show["no-login"] = true; show["no-auth"] = true; diff -r cd51aebfbf68 -r 4728c2db6fd6 main.html --- a/main.html Sat Apr 24 23:50:23 2010 -0700 +++ b/main.html Sun Apr 25 00:06:17 2010 -0700 @@ -10,8 +10,10 @@

Bugzilla Dashboard