diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-04-12 14:46:36 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-04-12 14:46:36 +0200 |
commit | 7c47b9d75ca02ce46175ee3bc0b54e27e8061621 (patch) | |
tree | ba7b1a6be60040f31e099e1cd30849b50a3ba1ae /include/html2bbcode.php | |
parent | 09a8b4b379d91dd62f38c116c99187a404d7e774 (diff) | |
parent | 549f7a53b11d014993fbb550de97b6cdf45e0843 (diff) | |
download | volse-hubzilla-7c47b9d75ca02ce46175ee3bc0b54e27e8061621.tar.gz volse-hubzilla-7c47b9d75ca02ce46175ee3bc0b54e27e8061621.tar.bz2 volse-hubzilla-7c47b9d75ca02ce46175ee3bc0b54e27e8061621.zip |
Merge remote-tracking branch 'mike/master' into dev
Diffstat (limited to 'include/html2bbcode.php')
-rw-r--r-- | include/html2bbcode.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/html2bbcode.php b/include/html2bbcode.php index 4166299db..1a03fbdaf 100644 --- a/include/html2bbcode.php +++ b/include/html2bbcode.php @@ -164,6 +164,7 @@ function html2bbcode($message) node2bbcode($doc, 'b', array(), '[b]', '[/b]'); node2bbcode($doc, 'i', array(), '[i]', '[/i]'); node2bbcode($doc, 'u', array(), '[u]', '[/u]'); + node2bbcode($doc, 's', array(), '[s]', '[/s]'); node2bbcode($doc, 'big', array(), "[size=large]", "[/size]"); node2bbcode($doc, 'small', array(), "[size=small]", "[/size]"); |