mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-24 00:13:36 +00:00
TopicSubscriptions: Hide broken "Topic" sort
This doesn't sort by the topic name, but the hidden sub_id field, leading to a confusing order. Bug: T273342 Change-Id: I6146abf05544d40c9ef0d2e8c58d020e5a5fa8a2
This commit is contained in:
parent
0935bb1271
commit
7550bb4395
|
@ -148,6 +148,7 @@ class TopicSubscriptionsPager extends TablePager {
|
|||
* @inheritDoc
|
||||
*/
|
||||
protected function isFieldSortable( $field ) {
|
||||
return isset( self::INDEX_FIELDS[$field] );
|
||||
// Topic is set to the auto-ID field (sub_id), so sorting by it is not very useful
|
||||
return isset( self::INDEX_FIELDS[$field] ) && $field !== '_topic';
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue