Changes between Initial Version and Version 1 of Ticket #19056, comment 2
- Timestamp:
- Nov 19, 2012, 7:46:23 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #19056, comment 2
initial v1 1 this also applies to the 'title' context variable set in UserAdmin's def user_change_password(self, request, id, form_url=''):somewhere about:2 1 this also applies to the 'title' context variable set in UserAdmin's `def user_change_password(self, request, id, form_url=''):` somewhere about: 2 {{{ 3 3 context = { 4 4 'title': _('Change password: %s') % escape(user.username), 5 5 'adminForm': adminForm, 6 6 }}} 7 7 this should be changed to 8 8 {{{ 9 9 context = { 10 10 'title': _('Change password: %s') % escape(user.get_username()), 11 11 'adminForm': adminForm, 12 12 }}} 13 13 i'm on the run right now, but perhaps somebody could commit that. 14 14