diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2012-02-23 14:10:32 +0100 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2012-02-23 14:10:32 +0100 |
commit | 6a0c815c1f8855c59f80c0de63095a35ed002cb4 (patch) | |
tree | 3fa0f7cdbc123169ab584133107c41885c743f11 /include/html2bbcode.php | |
parent | edd946bcadf132e33cfa88ba11c88f2914275253 (diff) | |
parent | c03b5b62c041d0bfa357c1caeaf5accccf4474c1 (diff) | |
download | volse-hubzilla-6a0c815c1f8855c59f80c0de63095a35ed002cb4.tar.gz volse-hubzilla-6a0c815c1f8855c59f80c0de63095a35ed002cb4.tar.bz2 volse-hubzilla-6a0c815c1f8855c59f80c0de63095a35ed002cb4.zip |
Merge remote-tracking branch 'friendica/master'
Diffstat (limited to 'include/html2bbcode.php')
-rwxr-xr-x | include/html2bbcode.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/html2bbcode.php b/include/html2bbcode.php index 4297ff2f9..d8f1a24f1 100755 --- a/include/html2bbcode.php +++ b/include/html2bbcode.php @@ -204,7 +204,7 @@ function html2bbcode($message) node2bbcode($doc, 'a', array('href'=>'/(.+)/'), '[url=$1]', '[/url]'); - node2bbcode($doc, 'img', array('src'=>'/(.+)/', 'width'=>'/(\d+)/', 'height'=>'/(\d+)/'), '[img$2x$3]$1', '[/img]'); + node2bbcode($doc, 'img', array('src'=>'/(.+)/', 'width'=>'/(\d+)/', 'height'=>'/(\d+)/'), '[img=$2x$3]$1', '[/img]'); node2bbcode($doc, 'img', array('src'=>'/(.+)/'), '[img]$1', '[/img]'); |