bbcode: mask "[" and "]" for attachments.
This commit is contained in:
parent
4bdd905b3e
commit
b4e8ec2806
|
@ -152,9 +152,9 @@ function bb_rearrange_share($shared) {
|
||||||
if ($matches)
|
if ($matches)
|
||||||
$description = trim($matches[1]);
|
$description = trim($matches[1]);
|
||||||
|
|
||||||
$url = htmlentities($url, ENT_QUOTES, 'UTF-8', false);
|
$url = str_replace(array("[", "]"), array("[", "]"), htmlentities($url, ENT_QUOTES, 'UTF-8', false));
|
||||||
$title = htmlentities($title, ENT_QUOTES, 'UTF-8', false);
|
$title = str_replace(array("[", "]"), array("[", "]"), htmlentities($title, ENT_QUOTES, 'UTF-8', false));
|
||||||
$preview = htmlentities($preview, ENT_QUOTES, 'UTF-8', false);
|
$preview = str_replace(array("[", "]"), array("[", "]"), htmlentities($preview, ENT_QUOTES, 'UTF-8', false));
|
||||||
|
|
||||||
$Text = trim($shared[1])."\n[attachment type='".$type."'";
|
$Text = trim($shared[1])."\n[attachment type='".$type."'";
|
||||||
|
|
||||||
|
@ -165,7 +165,7 @@ function bb_rearrange_share($shared) {
|
||||||
if ($preview != "") {
|
if ($preview != "") {
|
||||||
require_once("include/Photo.php");
|
require_once("include/Photo.php");
|
||||||
$picturedata = get_photo_info($preview);
|
$picturedata = get_photo_info($preview);
|
||||||
// echo $preview."*".print_r($picturedata, true)."*";
|
|
||||||
if (count($picturedata) > 0) {
|
if (count($picturedata) > 0) {
|
||||||
// if the preview picture is larger than 500 pixels then show it in a larger mode
|
// if the preview picture is larger than 500 pixels then show it in a larger mode
|
||||||
// But only, if the picture isn't higher than large (To prevent huge posts)
|
// But only, if the picture isn't higher than large (To prevent huge posts)
|
||||||
|
@ -281,8 +281,6 @@ function tryoembed($match){
|
||||||
if (isset($match[2]))
|
if (isset($match[2]))
|
||||||
$o->title = $match[2];
|
$o->title = $match[2];
|
||||||
|
|
||||||
//echo "<pre>"; var_dump($match, $url, $o); killme();
|
|
||||||
|
|
||||||
if ($o->type=="error") return $match[0];
|
if ($o->type=="error") return $match[0];
|
||||||
|
|
||||||
$html = oembed_format_object($o);
|
$html = oembed_format_object($o);
|
||||||
|
|
Loading…
Reference in a new issue