[Rt-commit] rt branch, 3.9-trunk, updated. rt-3.8.8-320-g95683c6

Kevin Falcone falcone at bestpractical.com
Fri Aug 13 17:50:12 EDT 2010


The branch, 3.9-trunk has been updated
       via  95683c62d2b617df048bdfca3f4c50d41415e59f (commit)
      from  769e7259fb7ca4f19ba4be696c104209a75cddf2 (commit)

Summary of changes:
 share/html/Elements/RT__User/ColumnMap |   18 +++++++++---------
 1 files changed, 9 insertions(+), 9 deletions(-)

- Log -----------------------------------------------------------------
commit 95683c62d2b617df048bdfca3f4c50d41415e59f
Author: Kevin Falcone <falcone at bestpractical.com>
Date:   Fri Aug 13 17:52:18 2010 -0400

    Less leaking of database column names into the UI

diff --git a/share/html/Elements/RT__User/ColumnMap b/share/html/Elements/RT__User/ColumnMap
index c0e5e82..2883738 100644
--- a/share/html/Elements/RT__User/ColumnMap
+++ b/share/html/Elements/RT__User/ColumnMap
@@ -63,17 +63,17 @@ my $COLUMN_MAP = {
 	value     => sub { return $_[0]->Name() },
     },
     RealName => {
-        title     => 'RealName', # loc
+        title     => 'Real Name', # loc
 	attribute => 'RealName',
 	value     => sub { return $_[0]->RealName() },
     },
     NickName => {
-        title     => 'NickName', # loc
+        title     => 'Nickname', # loc
 	attribute => 'NickName',
 	value     => sub { return $_[0]->NickName() },
     },
     EmailAddress => {
-        title     => 'EmailAddress', # loc
+        title     => 'Email Address', # loc
 	attribute => 'EmailAddress',
 	value     => sub { return $_[0]->EmailAddress() },
     },
@@ -83,32 +83,32 @@ my $COLUMN_MAP = {
 	value     => sub { return $_[0]->Organization() },
     },
     HomePhone => {
-        title     => 'HomePhone', # loc
+        title     => 'Home Phone', # loc
 	attribute => 'HomePhone',
 	value     => sub { return $_[0]->HomePhone() },
     },
     WorkPhone => {
-        title     => 'WorkPhone', # loc
+        title     => 'Work Phone', # loc
 	attribute => 'WorkPhone',
 	value     => sub { return $_[0]->WorkPhone() },
     },
     MobilePhone => {
-        title     => 'MobilePhone', # loc
+        title     => 'Mobile Phone', # loc
 	attribute => 'MobilePhone',
 	value     => sub { return $_[0]->MobilePhone() },
     },
     PagerPhone => {
-        title     => 'PagerPhone', # loc
+        title     => 'Pager Phone', # loc
 	attribute => 'PagerPhone',
 	value     => sub { return $_[0]->PagerPhone() },
     },
     Address1 => {
-        title     => 'Address1', # loc
+        title     => 'Address 1', # loc
 	attribute => 'Address1',
 	value     => sub { return $_[0]->Address1() },
     },
     Address2 => {
-        title     => 'Address2', # loc
+        title     => 'Address 2', # loc
 	attribute => 'Address2',
 	value     => sub { return $_[0]->Address2() },
     },

-----------------------------------------------------------------------


More information about the Rt-commit mailing list