The configuration form (and everywhere in the code) states that the string you enter in the blacklist are used as prefixes to match against tags:

The strings are matched as prefixes, so for example config: will match tags as config:core.extension and config:block_list.

But this is the code behind the matching:

if (strpos($tag, $prefix) !== FALSE) {
  $blacklisted = TRUE;
}

This code checks if the tag contains the blacklist value, instead of starts with it.
This should be changed to:

if (strpos($tag, $prefix) === 0) {
  $blacklisted = TRUE;
}
CommentFileSizeAuthor
#2 purge-tags_blacklist_prefixes-3436188-2.patch691 bytesrp7

Comments

rp7 created an issue. See original summary.

rp7’s picture

Assigned: rp7 » Unassigned
Status: Active » Needs review
StatusFileSize
new691 bytes