diff --git a/vms/vms.views.inc b/vms/vms.views.inc
index 29b674e..caffb61 100644
--- a/vms/vms.views.inc
+++ b/vms/vms.views.inc
@@ -55,13 +55,11 @@ function vms_views_query_alter($view, $query) {
   // Get the patterns we want to replace.
   $replacements = array_keys(vms_mlid_query_types());

-  if (isset($view->filter['vms_field_promo_mlid_direct']) || isset($view->filter['vms_field_promo_mlid_sub'])) {
-    foreach ($query->where as &$condition_group) {
-      foreach ($condition_group['conditions'] as &$condition) {
-        if (in_array($condition['value'], $replacements, TRUE)) {
-          $condition['operator'] = ($condition['operator'] == '=') ? 'IN' : 'NOT IN';
-          $condition['value'] = vms_get_current_mlid($condition['value']);
-        }
+  foreach ($query->where as &$condition_group) {
+    foreach ($condition_group['conditions'] as &$condition) {
+      if (in_array($condition['value'], $replacements, TRUE)) {
+        $condition['operator'] = ($condition['operator'] == '=') ? 'IN' : 'NOT IN';
+        $condition['value'] = vms_get_current_mlid($condition['value']);
       }
     }
   }
