diff options
-rw-r--r-- | app/models/group.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/group.rb b/app/models/group.rb index cd0368a5c..47ef7231a 100644 --- a/app/models/group.rb +++ b/app/models/group.rb @@ -52,7 +52,7 @@ class Group < Principal end def self.human_attribute_name(attribute_key_name, *args) - attr_name = attribute_key_name + attr_name = attribute_key_name.to_s if attr_name == 'lastname' attr_name = "name" end |