diff --git a/app/controllers/application.rb b/app/controllers/application.rb index 125b282e..2cfba813 100644 --- a/app/controllers/application.rb +++ b/app/controllers/application.rb @@ -7,7 +7,13 @@ require "redcloth" require 'date' require 'time' -Tag # We need this in development mode, or you get 'method missing' errors + +# Commented the following line because of #744. It prevented rake db:migrate to +# run because this tag went looking for the taggings table that did not exist +# when you feshly create a new database +# Old comment: We need this in development mode, or you get 'method missing' errors +# +# Tag class ApplicationController < ActionController::Base diff --git a/app/views/feedlist/index.html.erb b/app/views/feedlist/index.html.erb index 0b37ea82..a75c01f8 100644 --- a/app/views/feedlist/index.html.erb +++ b/app/views/feedlist/index.html.erb @@ -54,6 +54,10 @@ <%= text_formatted_link({:controller => 'projects', :action => 'index', :only_active_with_no_next_actions => true}) %> Active projects with no next actions +