I just upgraded to 2.6 and really happy to see some of the bug fixes. The date is finally displayed correctly in IE, thank you. I am trying to have all the files sorted by Date Modified automatically. Basically when a user logs in I would like them to see newer files at the top. Is there a way to do this?

Thanks a bunch,

SweetSpot

Comments

robmilne’s picture

This is not something I'll change in the repo since sort by name is the commonly expected behaviour.

To sort by date change line 761 of webfm.js...
cp.loadList("n");
...to
cp.loadList("m");

Also to have most recent at top change line 568 of webfm.js...
this.sc_m = 0;
...to
this.sc_m = 1;

robmilne’s picture

Status: Active » Fixed
Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.