diff options
author | JoshyPHP <s9e.dev@gmail.com> | 2015-02-13 11:28:51 +0100 |
---|---|---|
committer | JoshyPHP <s9e.dev@gmail.com> | 2015-04-02 19:16:01 +0200 |
commit | f6e3e41717e71fb43ea63785cfe7980e33be3fbf (patch) | |
tree | 79a5f5e975be440147887560699e519ca451201a /phpBB/phpbb/textformatter | |
parent | 63753bbf1a7a695938c7196fb7c1d9318d7a7375 (diff) | |
download | forums-f6e3e41717e71fb43ea63785cfe7980e33be3fbf.tar forums-f6e3e41717e71fb43ea63785cfe7980e33be3fbf.tar.gz forums-f6e3e41717e71fb43ea63785cfe7980e33be3fbf.tar.bz2 forums-f6e3e41717e71fb43ea63785cfe7980e33be3fbf.tar.xz forums-f6e3e41717e71fb43ea63785cfe7980e33be3fbf.zip |
[ticket/11768] Added support for magic links that start with "www."
PHPBB3-11768
Diffstat (limited to 'phpBB/phpbb/textformatter')
-rw-r--r-- | phpBB/phpbb/textformatter/s9e/factory.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/textformatter/s9e/factory.php b/phpBB/phpbb/textformatter/s9e/factory.php index d000262bec..77b1a1c916 100644 --- a/phpBB/phpbb/textformatter/s9e/factory.php +++ b/phpBB/phpbb/textformatter/s9e/factory.php @@ -280,7 +280,7 @@ class factory implements \phpbb\textformatter\cache // Load the magic links plugins. We do that after BBCodes so that they use the same tags $configurator->plugins->load('Autoemail'); - $configurator->plugins->load('Autolink'); + $configurator->plugins->load('Autolink', array('matchWww' => true)); // Register some vars with a default value. Those should be set at runtime by whatever calls // the parser |