Skip to content

Commit 92f4a5f

Browse files
committedMar 1, 2012
Document a template variable that already existed to fulfill RFE #9730.
1 parent d2f157d commit 92f4a5f

File tree

3 files changed

+16
-8
lines changed

3 files changed

+16
-8
lines changed
 

‎docs/changelog/7.x.x.txt

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
7.10.25
2-
- fixed #12321: Error while deleting a group.
3-
- fixed #12322: Cache/CHI stomps on the config file
4-
- fixed #12327: HttpProxy does not clean up cookie jar storage locations
5-
- fixed #12329: FlatDiscount Sku forces you to enter in negative numbers for price
6-
- fixed #12334: Company name with : in it breaks email sender identity
7-
- fixed #12328: invalid wgaccess file in uploads
2+
- fixed #12321: Error while deleting a group.
3+
- fixed #12322: Cache/CHI stomps on the config file
4+
- fixed #12327: HttpProxy does not clean up cookie jar storage locations
5+
- fixed #12329: FlatDiscount Sku forces you to enter in negative numbers for price
6+
- fixed #12334: Company name with : in it breaks email sender identity
7+
- fixed #12328: invalid wgaccess file in uploads
8+
- RFE: 9730 (actually missing documentation)
89

910
7.10.24
1011
- fixed #12318: asset error causes asset manager to fail

‎lib/WebGUI/Help/Account.pm

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ our $HELP = {
5555
isa => [ ],
5656
fields => [ ],
5757
variables => [
58+
{ name => "profile_user_id", },
5859
{ name => "user_full_name", },
5960
{ name => "user_member_since", },
6061
{ name => "view_profile_url", },

‎lib/WebGUI/i18n/English/Account.pm

+8-2
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,18 @@ our $I18N = {
2121
lastUpdated => 1230844137,
2222
},
2323

24-
'user_full_name' => {
25-
message => q{The full name of the user},
24+
'profile_user_id' => {
25+
message => q{The userId of the user whose account is being viewed.},
2626
context => q{template variable},
2727
lastUpdated => 1230844137,
2828
},
2929

30+
'user_full_name' => {
31+
message => q{The full name of the user whose account is being viewed},
32+
context => q{template variable},
33+
lastUpdated => 1330588033,
34+
},
35+
3036
'user_member_since' => {
3137
message => q{The date this user created their account on the site, in epoch format. Use the Date macro to change the format.},
3238
context => q{template variable},

0 commit comments

Comments
 (0)
Please sign in to comment.