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 !
restore page title in tag view
lrbalt (author)
Thu Aug 28 01:25:58 -0700 2008
commit  abdac8855d5d17eaa63f877cca53fc6df83f5e35
tree    147891eaccf10906d917279b972a54d777213433
parent  9d09a4d47a90dd475751117f084d4ab5ccae1327
...
337
338
339
340
341
342
 
343
344
345
...
337
338
339
 
340
341
342
343
344
345
0
@@ -337,9 +337,9 @@ class TodosController < ApplicationController
0
   
0
   # /todos/tag/[tag_name] shows all the actions tagged with tag_name
0
   def tag
0
-    @page_title = "TRACKS::Tagged with \'#{@tag_name}\'"
0
     @source_view = params['_source_view'] || 'tag'
0
     @tag_name = params[:name]
0
+    @page_title = "TRACKS::Tagged with \'#{@tag_name}\'"
0
     
0
     # mobile tags are routed with :name ending on .m. So we need to chomp it
0
     @tag_name = @tag_name.chomp('.m') if mobile?

Comments