public
Description: Tracks is a GTD(TM) web application, built with Ruby on Rails
Homepage: http://www.rousette.org.uk/projects/
Clone URL: git://github.com/bsag/tracks.git
Click here to lend your support to: tracks and make a donation at www.pledgie.com !
fix #763 where all tags were shown twice

thanks Marcin for the report
lrbalt (author)
Wed Aug 27 11:54:56 -0700 2008
commit  9d09a4d47a90dd475751117f084d4ab5ccae1327
tree    1a942d66fc524e777fc1ac3d972470904cb1044d
parent  11f9114ad599818ddfb233ed9da6908e3633166e
...
43
44
45
46
 
47
48
49
...
43
44
45
 
46
47
48
49
0
@@ -43,7 +43,7 @@ class ProjectsController < ApplicationController
0
     init_data_for_sidebar unless mobile?
0
     @projects = current_user.projects
0
     @page_title = "TRACKS::Project: #{@project.name}"
0
-    @project.todos.send :with_scope, :find => { :include => [:context, :tags] } do
0
+    @project.todos.send :with_scope, :find => { :include => [:context] } do
0
       @not_done = @project.not_done_todos(:include_project_hidden_todos => true)
0
       @deferred = @project.deferred_todos.sort_by { |todo| todo.show_from }
0
       @done = @project.done_todos
...
1
 
2
3
4
...
 
1
2
3
4
0
@@ -1,4 +1,4 @@
0
-<% @not_done = project.not_done_todos -%>
0
+<% #@not_done = project.not_done_todos -%>
0
 
0
 <div id="p<%= project.id %>" class="container project">
0
   <h2>

Comments