Aktionen
GX-Bug #70332
geschlossenFalsche Kategorie wird unter Toolbox > Logs anzeigen vorausgewählt | Wrong category is preselected under Toolbox > Show Logs
Status:
Erledigt
Priorität:
Normal
Zugewiesen an:
Ahmed Hamouda
Kategorie:
Adminbereich
Zielversion:
% erledigt:
0%
Geschätzter Aufwand:
Steps to reproduce:
Betroffene Versionen:
4.7.2.3
Release Notes Langtext:
Unter Toolbox > Logs anzeigen wird jetzt die Kategorie mit den neuesten Einträgen vorausgewählt
Beschreibung
Under Toolbox > Show Logs, the category that has entries dating back the longest is always preselected. However, it makes more sense the other way around, i.e. the one with the most recent entries.
Suggested solution from the forum for the GXMainComponents/Controllers/HttpView/Admin/LoggingController.inc.php
:
if ($mtimeA < $mtimeB) { return -1; } if ($mtimeA > $mtimeB) { return 1; } return 0;
replace with
return $mtimeB <=> $mtimeA;
Aktionen