Remove strictly numeric tags exception

- It prevented to use year number hashtags for no clear benefit
This commit is contained in:
Hypolite Petovan 2021-01-20 08:10:20 -05:00
parent 47bbe16d13
commit 35213630e8
1 changed files with 0 additions and 5 deletions

View File

@ -2104,11 +2104,6 @@ class BBCode
continue;
}
// ignore strictly numeric tags like #1
if ((strpos($match, '#') === 0) && ctype_digit(substr($match, 1))) {
continue;
}
// try not to catch url fragments
if (strpos($string, $match) && preg_match('/[a-zA-z0-9\/]/', substr($string, strpos($string, $match) - 1, 1))) {
continue;