mirror of
https://github.com/friendica/friendica
synced 2025-04-19 07:10:11 +00:00
Issue 11425: Additional sorting by creation date
This commit is contained in:
parent
e1a8f8aff6
commit
2236e5cfb0
5 changed files with 81 additions and 44 deletions
|
@ -68,6 +68,8 @@ class Network extends NetworkModule
|
|||
|
||||
if (self::$order === 'received') {
|
||||
$ordering = '`received`';
|
||||
} elseif (self::$order === 'created') {
|
||||
$ordering = '`created`';
|
||||
} else {
|
||||
$ordering = '`commented`';
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue