Some more notices in addons
parent
b8d0930665
commit
74353e7f2d
|
@ -341,10 +341,13 @@ function fromgplus_handleattachments($a, $uid, $item, $displaytext, $shared) {
|
||||||
if ($images["full"] != "")
|
if ($images["full"] != "")
|
||||||
$pagedata["images"][0]["src"] = $images["full"];
|
$pagedata["images"][0]["src"] = $images["full"];
|
||||||
|
|
||||||
$quote = trim(fromgplus_html2bbcode($attachment->content));
|
if (!empty($attachment->content)) {
|
||||||
|
$quote = trim(fromgplus_html2bbcode($attachment->content));
|
||||||
|
}
|
||||||
|
|
||||||
if ($quote != "")
|
if (!empty($quote)) {
|
||||||
$pagedata["text"] = $quote;
|
$pagedata["text"] = $quote;
|
||||||
|
}
|
||||||
|
|
||||||
// Add Keywords to page link
|
// Add Keywords to page link
|
||||||
$data = parseurl_getsiteinfo_cached($pagedata["url"], true);
|
$data = parseurl_getsiteinfo_cached($pagedata["url"], true);
|
||||||
|
|
|
@ -778,6 +778,7 @@ function pumpio_fetchtimeline(App $a, $uid)
|
||||||
$success = $client->CallAPI($url, 'GET', [], ['FailOnAccessError'=>true], $user);
|
$success = $client->CallAPI($url, 'GET', [], ['FailOnAccessError'=>true], $user);
|
||||||
} else {
|
} else {
|
||||||
$success = false;
|
$success = false;
|
||||||
|
$user = [];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$success) {
|
if (!$success) {
|
||||||
|
|
|
@ -443,7 +443,7 @@ function tumblr_send(App $a, array &$b) {
|
||||||
"<p>".$params['caption']."</p>";
|
"<p>".$params['caption']."</p>";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empty($params['caption'])) {
|
if (empty($params['caption']) && !empty($siteinfo["description"])) {
|
||||||
$params['caption'] = BBCode::convert("[quote]" . $siteinfo["description"] . "[/quote]", false, 4);
|
$params['caption'] = BBCode::convert("[quote]" . $siteinfo["description"] . "[/quote]", false, 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue