diff options
author | friendica <info@friendica.com> | 2014-06-25 19:17:51 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-06-25 19:17:51 -0700 |
commit | 893c9419f4004eb19536d6238be4429ff038ba9e (patch) | |
tree | fae520bbb68b8fc0d7c39b402431ec62487dcffd /util/wp | |
parent | e6d7bfc8a3c755a8805a341d38b60cc08ea15518 (diff) | |
download | volse-hubzilla-893c9419f4004eb19536d6238be4429ff038ba9e.tar.gz volse-hubzilla-893c9419f4004eb19536d6238be4429ff038ba9e.tar.bz2 volse-hubzilla-893c9419f4004eb19536d6238be4429ff038ba9e.zip |
fix bad translation of blockquote in wordpress ("post_to_red") plugin
Diffstat (limited to 'util/wp')
-rw-r--r-- | util/wp/post_to_red/post_to_red.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/wp/post_to_red/post_to_red.php b/util/wp/post_to_red/post_to_red.php index e7f18985e..5146b8be1 100644 --- a/util/wp/post_to_red/post_to_red.php +++ b/util/wp/post_to_red/post_to_red.php @@ -453,14 +453,14 @@ function xpost_to_html2bbcode($text) { '$3', '[img]http://$2[/img]' . "\n", ':$3', - '\[quote\]$1\[/quote\]', - '\[code\]$1\[/code\]', + '[quote]$1[/quote]', + '[code]$1[/code]', '', '', '', - '\[quote\]$1\[/quote\]', + '[quote]$1[/quote]', '$1', - '\[code\]$1\[/code\]', + '[code]$1[/code]', "\n", '[b]$1[/b]', '[i]$1[/i]', |