diff options
author | Rubén Calvo <rubencm@gmail.com> | 2017-10-02 16:01:14 +0200 |
---|---|---|
committer | Rubén Calvo <rubencm@gmail.com> | 2017-10-31 14:30:45 +0100 |
commit | 3bfd006e77853d5a84f822269601d41d152fe89b (patch) | |
tree | 9ad91f4dc0424d30b6bed4e816bd6bd35a95c509 /phpBB | |
parent | 508caa9bd49a09bed3f09c31c1e5d78584b388a3 (diff) | |
download | forums-3bfd006e77853d5a84f822269601d41d152fe89b.tar forums-3bfd006e77853d5a84f822269601d41d152fe89b.tar.gz forums-3bfd006e77853d5a84f822269601d41d152fe89b.tar.bz2 forums-3bfd006e77853d5a84f822269601d41d152fe89b.tar.xz forums-3bfd006e77853d5a84f822269601d41d152fe89b.zip |
[ticket/15171] Fix texformatter
PHPBB3-15171
Diffstat (limited to 'phpBB')
-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 d5ad8283d9..15d0a5e3e5 100644 --- a/phpBB/phpbb/textformatter/s9e/factory.php +++ b/phpBB/phpbb/textformatter/s9e/factory.php @@ -78,7 +78,7 @@ class factory implements \phpbb\textformatter\cache_interface 'b' => '[B]{TEXT}[/B]', 'code' => '[CODE lang={IDENTIFIER;optional}]{TEXT}[/CODE]', 'color' => '[COLOR={COLOR}]{TEXT}[/COLOR]', - 'email' => '[EMAIL={EMAIL;useContent} subject={TEXT;optional;postFilter=rawurlencode} body={TEXT;optional;postFilter=rawurlencode}]{TEXT}[/EMAIL]', + 'email' => '[EMAIL={EMAIL;useContent} subject={TEXT1;optional;postFilter=rawurlencode} body={TEXT2;optional;postFilter=rawurlencode}]{TEXT}[/EMAIL]', 'flash' => '[FLASH={NUMBER1},{NUMBER2} width={NUMBER1;postFilter=#flashwidth} height={NUMBER2;postFilter=#flashheight} url={URL;useContent} /]', 'i' => '[I]{TEXT}[/I]', 'img' => '[IMG src={IMAGEURL;useContent}]', |