From: <jh...@us...> - 2012-04-24 17:14:16
|
Revision: 319 http://etch.svn.sourceforge.net/etch/?rev=319&view=rev Author: jheiss Date: 2012-04-24 17:14:10 +0000 (Tue, 24 Apr 2012) Log Message: ----------- Comment out the links to login/logout. There has never been support for them, and with some of the recent routing changes there is no longer routing to even generate the links. Modified Paths: -------------- trunk/server/app/views/layouts/application.html.erb Modified: trunk/server/app/views/layouts/application.html.erb =================================================================== --- trunk/server/app/views/layouts/application.html.erb 2012-04-24 17:02:42 UTC (rev 318) +++ trunk/server/app/views/layouts/application.html.erb 2012-04-24 17:14:10 UTC (rev 319) @@ -14,11 +14,11 @@ <p id="account_links"> <%- if session && session[:account_id] -%> Welcome back, <%= link_to logged_in_account.name, account_path(logged_in_account) %>! - | <%= link_to "Help", "http://etch.sourceforge.net/" %> - | <%= link_to "Logout", :controller => 'login', :action => 'logout' %> + | <%#= link_to "Logout", :controller => 'login', :action => 'logout' %> <%- else -%> -<%= link_to "Login", :controller => 'login', :action => 'login' %> +<%#= link_to "Login", :controller => 'login', :action => 'login' %> <%- end -%> +<%= link_to "Help", "http://etch.sourceforge.net/" %> </p> <h1 id="branding"><%= link_to "Etch", { :controller => 'dashboard' } %></h1> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |