View Single Post
Hmm....looks like somebody forgot to close an anchor tag. Here's the corrected code:

/app/views/main/index.rhtml

Code:
<ul id="home" title="Contexts" selected="true">
	<li>
    <a href="/inbox">Inbox <span class="count"><%= @inbox_count %></span></a>
  </li>
  
<% @contexts.each {|c| %>
	<li>
    <a href="/context/view/<%= c.ctx_id %>">
      <% if c.is_subcontext %>
        <span class="subcontext"><%= c.name %></span>
      <% else %>
        <%= c.name %>
      <% end %>
      <% if c.task_count > 0 %>
        <span class="count"><%= c.task_count %></span>
      <% end %>
    </a>
	</li>
<% } %>
</ul>
After that, all works fine! :)

Jeff