muck-users 3.1.3 → 3.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.1.3
1
+ 3.1.4
@@ -132,9 +132,9 @@ class Muck::UsersController < ApplicationController
132
132
  end
133
133
  else
134
134
  recover_password_prompt = render_to_string :partial => 'users/recover_password_via_email_link', :locals => { :email => params[:user_email] }
135
- result = t('muck.users.email_not_available', :reset_password_help => recover_password_prompt)
135
+ result = t('muck.users.email_not_available', :reset_password_help => recover_password_prompt.html_safe).html_safe
136
136
  respond_to do |format|
137
- format.html { render :partial => 'users/unavailable', :locals => { :message => result } }
137
+ format.html { render :partial => 'users/unavailable', :locals => { :message => result.html_safe } }
138
138
  format.js { render :partial => 'users/unavailable', :locals => { :message => result } }
139
139
  end
140
140
  return
data/muck-users.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{muck-users}
8
- s.version = "3.1.3"
8
+ s.version = "3.1.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Justin Ball", "Joel Duffin"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: muck-users
3
3
  version: !ruby/object:Gem::Version
4
- hash: 5
4
+ hash: 11
5
5
  prerelease: false
6
6
  segments:
7
7
  - 3
8
8
  - 1
9
- - 3
10
- version: 3.1.3
9
+ - 4
10
+ version: 3.1.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Justin Ball