]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Apparently medium.com uses @ frequently i URLs
authorMikael Nordfeldth <mmn@hethane.se>
Fri, 17 Jun 2016 09:20:36 +0000 (11:20 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Fri, 17 Jun 2016 09:20:36 +0000 (11:20 +0200)
and we skipped them because we assumed they were urlencoded when copied.

lib/framework.php

index 229de8b79323f6bf22e3211e42b01ac88c60693b..d21bb994b82105926f513485e92b1787a9ae77a6 100644 (file)
@@ -62,7 +62,7 @@ define('NOTICE_INBOX_SOURCE_GATEWAY', -1);
  * Some of those characters can be troublesome when auto-linking plain text. Such as "http://some.com/)"
  * URL encoding should be used whenever a weird character is used, the following strings are not definitive.
  */
-define('URL_REGEX_VALID_PATH_CHARS',        '\pN\pL\,\!\.\:\-\_\+\/\=\;\%\~\*');
+define('URL_REGEX_VALID_PATH_CHARS',        '\pN\pL\,\!\.\:\-\_\+\/\@\=\;\%\~\*');
 define('URL_REGEX_VALID_QSTRING_CHARS',     URL_REGEX_VALID_PATH_CHARS    . '\&');
 define('URL_REGEX_VALID_FRAGMENT_CHARS',    URL_REGEX_VALID_QSTRING_CHARS . '\?\#');
 define('URL_REGEX_EXCLUDED_END_CHARS',      '\?\.\,\!\#\:\'');  // don't include these if they are directly after a URL