mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 01:30:50 -04:00
Merge pull request #44023 from nextcloud/chore/document_url_regex_changes
chore(IURLGenerater): Document changes to `URL_REGEX_NO_MODIFIERS`
This commit is contained in:
commit
5f514c6ff8
1 changed files with 2 additions and 0 deletions
|
|
@ -41,6 +41,7 @@ interface IURLGenerator {
|
|||
* This is a copy of the frontend regex in core/src/OCP/comments.js, make sure to adjust both when changing
|
||||
*
|
||||
* @since 25.0.0
|
||||
* @since 29.0.0 changed to match localhost and hostnames with ports
|
||||
*/
|
||||
public const URL_REGEX = '/' . self::URL_REGEX_NO_MODIFIERS . '/mi';
|
||||
|
||||
|
|
@ -50,6 +51,7 @@ interface IURLGenerator {
|
|||
* This is a copy of the frontend regex in core/src/OCP/comments.js, make sure to adjust both when changing
|
||||
*
|
||||
* @since 25.0.0
|
||||
* @since 29.0.0 changed to match localhost and hostnames with ports
|
||||
*/
|
||||
public const URL_REGEX_NO_MODIFIERS = '(\s|\n|^)(https?:\/\/)([-A-Z0-9+_.]+(?::[0-9]+)?(?:\/[-A-Z0-9+&@#%?=~_|!:,.;()]*)*)(\s|\n|$)';
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue