# HG changeset patch # User luisf # Date 1312989835 -3600 # Node ID 7c06dde557ecd8b1859c40454b5b05469847867b # Parent 22262ff56e84516acd5a9df454349d23770ca55b Fixed Missing User Id when using auto complete to add authors diff -r 22262ff56e84 -r 7c06dde557ec vendor/plugins/redmine_bibliography/app/helpers/publications_helper.rb --- a/vendor/plugins/redmine_bibliography/app/helpers/publications_helper.rb Wed Aug 10 16:20:40 2011 +0100 +++ b/vendor/plugins/redmine_bibliography/app/helpers/publications_helper.rb Wed Aug 10 16:23:55 2011 +0100 @@ -21,7 +21,7 @@ author_info = { :name_on_paper => author.name, - :user_id => author.id, + :author_user_id => author.id, :institution => "", :is_user => "1" } @@ -36,7 +36,7 @@ author_info = { :name_on_paper => author.name, - :user_id => author.user_id, + :author_user_id => author.user_id, :id => author.id, :is_user => "0" }