Mercurial > hg > soundsoftware-site
diff vendor/plugins/redmine_bibliography/app/controllers/authors_controller.rb @ 616:156bd1153f47 feature_36
Fix for Feature #235. This view is no longer a priority.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Tue, 23 Aug 2011 17:16:15 +0100 |
parents | 8fa35731c959 |
children |
line wrap: on
line diff
--- a/vendor/plugins/redmine_bibliography/app/controllers/authors_controller.rb Tue Aug 23 15:47:15 2011 +0100 +++ b/vendor/plugins/redmine_bibliography/app/controllers/authors_controller.rb Tue Aug 23 17:16:15 2011 +0100 @@ -1,12 +1,13 @@ class AuthorsController < ApplicationController + helper :publications + include PublicationsHelper def index @authors = Author.find(:all) end def show - @author = Author.find(params[:id]) - + @author = Author.find(params[:id]) end end