The 'Last Access time' column in the Caches tab never gets updated.
I think this is because _updateActiveTime in LDAPUser.py is called nowhere.
I added the line:
user._updateActiveTime()
in def authenticate at line 795 of LDAPUserFolder.py. That works in my test environment.
I also patched dtml/cache.dtml so that now the creation and last access times are displayed.
98a99
> <td class="form-label"> Creation time </td>
125a127,130
> <dtml-var expr="getCreationTime()" fmt=Time>
> </td>
>
> <td valign="top" class="form-text">
158a164,167
> <dtml-var expr="getCreationTime()" fmt=Time>
> </td>
>
> <td valign="top" class="form-text">
|