mirror of
https://github.com/friendica/friendica
synced 2025-04-27 15:50:12 +00:00
Poco: New fields for last contact and last failure of a contact.
This commit is contained in:
parent
5b96c7b3e3
commit
54a5a80b24
6 changed files with 139 additions and 15 deletions
|
@ -52,7 +52,7 @@ function get_attached_data($body) {
|
|||
if (preg_match_all("(\[url=([$URLSearchString]*)\]\s*\[img\]([$URLSearchString]*)\[\/img\]\s*\[\/url\])ism", $body, $pictures, PREG_SET_ORDER)) {
|
||||
if (count($pictures) == 1) {
|
||||
// Checking, if the link goes to a picture
|
||||
$data = parseurl_getsiteinfo($pictures[0][1], true);
|
||||
$data = parseurl_getsiteinfo_cached($pictures[0][1], true);
|
||||
if ($data["type"] == "photo") {
|
||||
$post["type"] = "photo";
|
||||
if (isset($data["images"][0]))
|
||||
|
@ -95,7 +95,7 @@ function get_attached_data($body) {
|
|||
}
|
||||
} elseif (isset($post["url"]) AND ($post["type"] == "video")) {
|
||||
require_once("mod/parse_url.php");
|
||||
$data = parseurl_getsiteinfo($post["url"], true);
|
||||
$data = parseurl_getsiteinfo_cached($post["url"], true);
|
||||
|
||||
if (isset($data["images"][0]))
|
||||
$post["image"] = $data["images"][0]["src"];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue