Merge "Fix missingcommenttext message to be more useful in different page layouts"
[lhc/web/wiklou.git] / includes / changes / ChangesListStringOptionsFilterGroup.php
index 59efd82..2d1521d 100644 (file)
@@ -242,4 +242,14 @@ class ChangesListStringOptionsFilterGroup extends ChangesListFilterGroup {
 
                return $output;
        }
+
+       /**
+        * Check if this filter group is currently active
+        *
+        * @param {boolean} $isStructuredUI Is structured filters UI current enabled
+        */
+       public function isActive( $isStructuredUI ) {
+               // STRING_OPTIONS filter groups are exclusively active on Structured UI
+               return $isStructuredUI;
+       }
 }