diff options
author | friendica <info@friendica.com> | 2014-07-01 18:38:44 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-07-01 18:38:44 -0700 |
commit | c037a5083ca45738247bb250693f3e8fd08c5424 (patch) | |
tree | 77cb5de90e01ac3a7760f6100a2812e2b2d18b31 /mod/item.php | |
parent | fc69220b94efb39169e401b31e70904ac3294255 (diff) | |
download | volse-hubzilla-c037a5083ca45738247bb250693f3e8fd08c5424.tar.gz volse-hubzilla-c037a5083ca45738247bb250693f3e8fd08c5424.tar.bz2 volse-hubzilla-c037a5083ca45738247bb250693f3e8fd08c5424.zip |
optionally allow zrl usage from specific markdown sources
Diffstat (limited to 'mod/item.php')
-rw-r--r-- | mod/item.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/item.php b/mod/item.php index ce43bdf96..c346389e7 100644 --- a/mod/item.php +++ b/mod/item.php @@ -424,7 +424,7 @@ function item_post(&$a) { if(local_user() && local_user() == $profile_uid && get_pconfig(local_user(),'editor','use_markdown')) { require_once('include/bb2diaspora.php'); - $body = diaspora2bb($body); + $body = diaspora2bb($body,true); } |