Commit d92446df1fdba87101c92c90b1c34eb2f1eebef4

Authored by Dmitriy Zaporozhets
2 parents 0321a3c9 69ba86e8

Merge pull request #982 from JamesEarlDouglas/mailer-controller-typo

fix typo: 'avaialble' -> 'available'
Showing 1 changed file with 3 additions and 3 deletions   Show diff stats
app/controllers/admin/mailer_controller.rb
... ... @@ -22,7 +22,7 @@ class Admin::MailerController < ApplicationController
22 22 render :file => 'notify/note_wall_email', :layout => 'notify'
23 23 end
24 24 rescue
25   - render :text => "Preview not avaialble"
  25 + render :text => "Preview not available"
26 26 end
27 27  
28 28 def preview_user_new
... ... @@ -31,7 +31,7 @@ class Admin::MailerController < ApplicationController
31 31  
32 32 render :file => 'notify/new_user_email', :layout => 'notify'
33 33 rescue
34   - render :text => "Preview not avaialble"
  34 + render :text => "Preview not available"
35 35 end
36 36  
37 37 def preview_issue_new
... ... @@ -40,6 +40,6 @@ class Admin::MailerController < ApplicationController
40 40 @project = @issue.project
41 41 render :file => 'notify/new_issue_email', :layout => 'notify'
42 42 rescue
43   - render :text => "Preview not avaialble"
  43 + render :text => "Preview not available"
44 44 end
45 45 end
... ...