when inserting a link, if the url begins with '!' ignore oembed and do everytthing old school.
This commit is contained in:
parent
c3af36d33b
commit
aee2742951
@ -13,7 +13,7 @@ class Linkinfo extends \Zotlabs\Web\Controller {
|
|||||||
|
|
||||||
$text = null;
|
$text = null;
|
||||||
$str_tags = '';
|
$str_tags = '';
|
||||||
|
$process_oembed = true;
|
||||||
|
|
||||||
$br = "\n";
|
$br = "\n";
|
||||||
|
|
||||||
@ -22,6 +22,11 @@ class Linkinfo extends \Zotlabs\Web\Controller {
|
|||||||
else
|
else
|
||||||
$url = trim($_GET['url']);
|
$url = trim($_GET['url']);
|
||||||
|
|
||||||
|
if(substr($url,0,1) === '!') {
|
||||||
|
$process_oembed = false;
|
||||||
|
$url = substr($url,1);
|
||||||
|
}
|
||||||
|
|
||||||
$url = strip_zids($url);
|
$url = strip_zids($url);
|
||||||
|
|
||||||
if((substr($url,0,1) != '/') && (substr($url,0,4) != 'http'))
|
if((substr($url,0,1) != '/') && (substr($url,0,4) != 'http'))
|
||||||
@ -91,11 +96,13 @@ class Linkinfo extends \Zotlabs\Web\Controller {
|
|||||||
killme();
|
killme();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if($process_oembed) {
|
||||||
$x = oembed_process($url);
|
$x = oembed_process($url);
|
||||||
if($x) {
|
if($x) {
|
||||||
echo $x;
|
echo $x;
|
||||||
killme();
|
killme();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if($url && $title && $text) {
|
if($url && $title && $text) {
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user