Well, it seems I forgot to add the acts_as_authenticated to the repository on my...
[selectricity-live] / app / views / layouts / hc.rhtml
index 860992a4dbd25a495ac247035a25aa807b7a4a40..13b2e729109fc1d704d242418b840284a3f2d791 100755 (executable)
 
            <div id="links">
              <% if session[:user] %>
-               Welcome <strong><%= session[:user].login.capitalize %></strong>
+<% breakpoint %>
+               Welcome <strong><%= User.find(session[:user]).login.capitalize %></strong>
              <% else %>
-               <%= link_to("Login",:controller => "user", :action => "login")
-                %>/<%= link_to("Sign up", :controller => "user", :action => "signup")%>
+               <%= link_to("Login", :controller => "account", :action => "login")
+                %>/<%= link_to("Sign up", :controller => "account", :action => "signup")%>
              <% end %> |
          
              <% if session[:user] %>
-               <%= link_to("Logout", :controller => "user", :action => "logout") %>  |
+               <%= link_to("Logout", :controller => "account", :action => "logout") %>  |
              <% end %>
              
             <%= link_to("Help/About", :controller => "site", :action => "about") %>

Benjamin Mako Hill || Want to submit a patch?