diff options
author | friendica <info@friendica.com> | 2013-10-31 22:08:10 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-10-31 22:08:10 -0700 |
commit | 09ca39fd085595f791bec6f8e8c154b4a22d3b1e (patch) | |
tree | dce4b1fcbdcd2d6a1f40f8b524ad0699bb0b6163 /mod/rpost.php | |
parent | 3a7a6717385922fa10c92fe1027a123797639a4c (diff) | |
download | volse-hubzilla-09ca39fd085595f791bec6f8e8c154b4a22d3b1e.tar.gz volse-hubzilla-09ca39fd085595f791bec6f8e8c154b4a22d3b1e.tar.bz2 volse-hubzilla-09ca39fd085595f791bec6f8e8c154b4a22d3b1e.zip |
provide an html src converter
Diffstat (limited to 'mod/rpost.php')
-rw-r--r-- | mod/rpost.php | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/mod/rpost.php b/mod/rpost.php index 6173ca5e2..820799218 100644 --- a/mod/rpost.php +++ b/mod/rpost.php @@ -20,7 +20,6 @@ require_once('include/zot.php'); * remote_return= absolute URL to return after posting is finished * type= choices are 'html' or 'bbcode', default is 'bbcode' * - * currently content type is Red Matrix bbcode, though HTML is possible. This is left as an exercise for future developers */ @@ -85,13 +84,13 @@ function rpost_content(&$a) { )); - $a->page['htmlhead'] .= replace_macros(get_markup_template('jot-header.tpl'), array( - '$baseurl' => $a->get_baseurl(), - '$editselect' => (($plaintext) ? 'none' : '/(profile-jot-text|prvmail-text)/'), - '$ispublic' => ' ', // t('Visible to <strong>everybody</strong>'), - '$geotag' => $geotag, - '$nickname' => $channel['channel_address'] - )); +// $a->page['htmlhead'] .= replace_macros(get_markup_template('jot-header.tpl'), array( +// '$baseurl' => $a->get_baseurl(), +// '$editselect' => (($plaintext) ? 'none' : '/(profile-jot-text|prvmail-text)/'), +// '$ispublic' => ' ', // t('Visible to <strong>everybody</strong>'), +// '$geotag' => $geotag, +// '$nickname' => $channel['channel_address'] +// )); |