$bl_blog = PConfig::get($b['uid'], 'blogger', 'bl_blog');
if ($bl_username && $bl_password && $bl_blog) {
- require_once('include/bbcode.php');
-
$title = '<title>' . (($b['title']) ? $b['title'] : L10n::t('Post from Friendica')) . '</title>';
$post = $title . BBCode::convert($b['body']);
$post = xmlify($post);
$dw_blog = 'http://www.dreamwidth.org/interface/xmlrpc';
if($dw_username && $dw_password && $dw_blog) {
-
- require_once('include/bbcode.php');
-
$title = $b['title'];
$post = BBCode::convert($b['body']);
$post = xmlify($post);
$ij_blog = 'http://www.insanejournal.com/interface/xmlrpc';
if($ij_username && $ij_password && $ij_blog) {
-
- require_once('include/bbcode.php');
-
$title = $b['title'];
$post = BBCode::convert($b['body']);
$post = xmlify($post);
* License: 3-clause BSD license
*/
-require_once 'include/bbcode.php';
require_once 'mod/proxy.php';
use Friendica\Content\Text\BBCode;
$lj_blog = xmlify('http://www.livejournal.com/interface/xmlrpc');
if($lj_username && $lj_password && $lj_blog) {
-
- require_once('include/bbcode.php');
-
$title = xmlify($b['title']);
$post = BBCode::convert($b['body']);
$post = xmlify($post);
return;
}
require_once(dirname(__file__).'/phpmailer/class.phpmailer.php');
- require_once('include/bbcode.php');
+
$attachments = [];
mailstream_do_images($a, $item, $attachments);
$frommail = Config::get('mailstream', 'frommail');
* Author: Tobias Diekershoff <https://f.diekershoff.de/profile/tobias>
***/
-require_once 'include/bbcode.php';
-
use Friendica\Content\Text\BBCode;
use Friendica\Core\Addon;
use Friendica\Core\Config;
$public = PConfig::get($b['uid'], "pumpio", "public");
if($oauth_token && $oauth_token_secret) {
-
- require_once('include/bbcode.php');
-
$title = trim($b['title']);
$content = BBCode::convert($b['body'], false, 4);
return;
}
- require_once 'include/bbcode.php';
$dent = new StatusNetOAuth($api, $ckey, $csecret, $otoken, $osecret);
$max_char = $dent->get_maxlength(); // max. length for a dent
$tmbl_blog = 'blog/'.$page.'/post';
if($oauth_token && $oauth_token_secret && $tmbl_blog) {
-
- require_once('include/bbcode.php');
-
$tag_arr = [];
$tags = '';
$x = preg_match_all('/\#\[(.*?)\](.*?)\[/',$b['tag'],$matches,PREG_SET_ORDER);
if (substr($body, 0, 4) == "[url") {
$body = "URL/Image ...";
} else {
- require_once('include/bbcode.php');
require_once("include/html2plain.php");
+
$body = BBCode::convert($body, false, 2, true);
$body = html2plain($body, 0);
$body = ((strlen($body) > 137) ? substr($body, 0, 137) . "..." : $body);
}
if ($wp_username && $wp_password && $wp_blog) {
- require_once 'include/bbcode.php';
require_once 'include/html2plain.php';
$wptitle = trim($b['title']);