Merge branch 'dev' into 'dev'
Skip tags detection in URL See merge request hubzilla/core!1482
This commit is contained in:
commit
ef46738384
@ -825,6 +825,9 @@ function get_tags($s) {
|
|||||||
|
|
||||||
// ignore anything in [color= ], because it may contain color codes which are mistaken for tags
|
// ignore anything in [color= ], because it may contain color codes which are mistaken for tags
|
||||||
$s = preg_replace('/\[color=(.*?)\]/sm','',$s);
|
$s = preg_replace('/\[color=(.*?)\]/sm','',$s);
|
||||||
|
|
||||||
|
// skip anchors in URL
|
||||||
|
$s = preg_replace('/\[url=(.*?)\]/sm','',$s);
|
||||||
|
|
||||||
// match any double quoted tags
|
// match any double quoted tags
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user