facebook: Changing the order which kind of text is taken when there is no message
privacy_image_cache: Workaround when a space is in the urlpull/68/head
parent
bf4f8f4729
commit
cff32d46c2
|
@ -1090,15 +1090,15 @@ function facebook_post_hook(&$a,&$b) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fallback - if message is empty
|
// Fallback - if message is empty
|
||||||
|
if(!strlen($msg))
|
||||||
|
$msg = $linkname;
|
||||||
|
|
||||||
if(!strlen($msg))
|
if(!strlen($msg))
|
||||||
$msg = $link;
|
$msg = $link;
|
||||||
|
|
||||||
if(!strlen($msg))
|
if(!strlen($msg))
|
||||||
$msg = $image;
|
$msg = $image;
|
||||||
|
|
||||||
if(!strlen($msg))
|
|
||||||
$msg = $linkname;
|
|
||||||
|
|
||||||
// If there is nothing to post then exit
|
// If there is nothing to post then exit
|
||||||
if(!strlen($msg))
|
if(!strlen($msg))
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -51,6 +51,9 @@ function privacy_image_cache_init() {
|
||||||
} else {
|
} else {
|
||||||
require_once("Photo.php");
|
require_once("Photo.php");
|
||||||
|
|
||||||
|
// It shouldn't happen but it does - spaces in URL
|
||||||
|
$_REQUEST['url'] = str_replace(" ", "+", $_REQUEST['url']);
|
||||||
|
|
||||||
$img_str = fetch_url($_REQUEST['url'],true);
|
$img_str = fetch_url($_REQUEST['url'],true);
|
||||||
|
|
||||||
$tempfile = tempnam("", "cache");
|
$tempfile = tempnam("", "cache");
|
||||||
|
|
Loading…
Reference in New Issue