Commit dd52428b authored by Maksym Polishchuk's avatar Maksym Polishchuk Committed by Joël Pittet
Browse files

Issue #2973282 by mpolishchuck: Wrong entity bundle list is generated in...

Issue #2973282 by mpolishchuck: Wrong entity bundle list is generated in "Modify entity values" action if bundle names ends the same
parent 02530d75
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -570,7 +570,7 @@ function _views_bulk_operations_modify_action_get_bundles($entity_type, $context

    $has_enabled_fields = FALSE;
    foreach ($display_values as $key) {
      if (strpos($key, $bundle_name . '::') !== FALSE) {
      if (strpos($key, $bundle_name . '::') === 0) {
        $has_enabled_fields = TRUE;
      }
    }