1) { $post["type"] = "link"; $post["url"] = $b["plink"]; $post["image"] = $pictures[0][2]; $post["text"] = $body; } } elseif (preg_match_all("(\[img\]([$URLSearchString]*)\[\/img\])ism", $body, $pictures, PREG_SET_ORDER)) { if (count($pictures) == 1) { $post["type"] = "photo"; $post["image"] = $pictures[0][1]; $post["text"] = str_replace($pictures[0][0], "", $body); } elseif (count($pictures) > 1) { $post["type"] = "link"; $post["url"] = $b["plink"]; $post["image"] = $pictures[0][1]; $post["text"] = $body; } } if (!isset($post["type"])) { $post["type"] = "text"; $post["text"] = trim($body); } } if (($b["title"] != "") AND ($post["text"] != "")) $post["text"] = trim($b["title"]."\n\n".$post["text"]); elseif ($b["title"] != "") $post["text"] = trim($b["title"]); $html = bbcode($post["text"], false, false, 2); $msg = html2plain($html, 0, true); $msg = trim(html_entity_decode($msg,ENT_QUOTES,'UTF-8')); $link = ""; if ($includedlinks) { if ($post["type"] == "link") $link = $post["url"]; elseif ($post["type"] == "video") $link = $post["url"]; elseif ($post["type"] == "photo") $link = $post["image"]; if (($msg == "") AND isset($post["title"])) $msg = trim($post["title"]); if (($msg == "") AND isset($post["description"])) $msg = trim($post["description"]); // If the link is already contained in the post, then it neeedn't to be added again // But: if the link is beyond the limit, then it has to be added. if (($link != "") AND strstr($msg, $link)) { $pos = strpos($msg, $link); if (($limit == 0) OR ($pos < $limit)) $link = ""; } } if ($limit > 0) { // Reduce multiple spaces // When posted to a network with limited space, we try to gain space where possible while (strpos($msg, " ") !== false) $msg = str_replace(" ", " ", $msg); // Twitter is using its own limiter, so we always assume that shortened links will have this length if (strlen($link) > 0) $limit = $limit - 23; if (strlen($msg) > $limit) { if (!isset($post["url"])) { $limit = $limit - 23; $post["url"] = $b["plink"]; } $lines = explode("\n", $msg); $msg = ""; $recycle = html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8'); foreach ($lines AS $row=>$line) { if (strlen(trim($msg."\n".$line)) <= $limit) $msg = trim($msg."\n".$line); // Is the new message empty by now or is it a reshared message? elseif (($msg == "") OR (($row == 1) AND (substr($msg, 0, 4) == $recycle))) $msg = substr(substr(trim($msg."\n".$line), 0, $limit), 0, -3)."..."; } } } $post["text"] = trim($msg); return($post); } ?>