Patch #246
CJK naming convention
| Status: | Closed | Start: | ||
| Priority: | Normal | Due date: | ||
| Assigned to: | - | % Done: | 0% |
|
| Category: | - | |||
| Target version: | - | |||
Description
CJK naming convention is LastName + FistName.
Too simple patch for CJK naming convention.
But it is not proper patch for all CJK environment.
Some pages the order is not property shown!
--- app/models/user.rb (revision 1048)
+++ app/models/user.rb (working copy)
@@ -108,7 +108,8 @@
# Return user's full name for display
def name
- "#{firstname} #{lastname}"
+ #"#{firstname} #{lastname}"
+ "#{lastname} #{firstname}"
end
def active?