sforkowany z mirror/friendica
Remove strictly numeric tags exception
- It prevented to use year number hashtags for no clear benefit2022.09-rc
rodzic
47bbe16d13
commit
35213630e8
|
@ -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;
|
||||
|
|
Ładowanie…
Reference in New Issue