diff options
author | Matthew Landauer <matthew@openaustralia.org> | 2013-02-15 14:16:10 +1100 |
---|---|---|
committer | Matthew Landauer <matthew@openaustralia.org> | 2013-02-15 14:47:02 +1100 |
commit | b59116c168c7ca24c36faf73c7848e4537daec47 (patch) | |
tree | 51d7af8aa2aa735f1a952796e664fbcdacd99d7f /app/models | |
parent | 902631ec4f5e1a16b8f08a2ed0ccc86ad2b72c6c (diff) |
Inline helper
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/request_mailer.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/request_mailer.rb b/app/models/request_mailer.rb index 3be68ba24..de34ecf9f 100644 --- a/app/models/request_mailer.rb +++ b/app/models/request_mailer.rb @@ -68,7 +68,7 @@ class RequestMailer < ApplicationMailer @recipients = contact_from_name_and_email @subject = _("FOI response requires admin ({{reason}}) - {{title}}", :reason => info_request.described_state, :title => info_request.title) url = request_url(info_request) - admin_url = request_admin_url(info_request) + admin_url = admin_request_show_url(info_request) @body = {:reported_by => user, :info_request => info_request, :url => url, :admin_url => admin_url } end |