Modify ↓
Opened 17 years ago
Closed 17 years ago
#2276 closed enhancement (fixed)
nav bar display
Reported by: | Owned by: | Dalius | |
---|---|---|---|
Priority: | lowest | Component: | AuthOpenIdPlugin |
Severity: | trivial | Keywords: | |
Cc: | Trac Release: | 0.10 |
Description
This is pretty minor but:
You did the right thing in a 'sreg' request to get the nickname. If you have it, you should (IMO) put use it rather than the url in the nav bar. url's are ugly to look at.
125c125 < yield ('metanav', 'openidlogin', 'logged in as %s' % req.authname) --- > yield ('metanav', 'openidlogin', 'logged in as %s' % (req.session.get('nickname') or req.authname))
Attachments (0)
Note: See
TracTickets for help on using
tickets.
Fixed.
Are use using this plugin with trac version 0.10?