Once again, notices ... (#5535)

This commit is contained in:
Michael Vogel 2018-07-31 18:39:23 +02:00 committed by Tobias Diekershoff
parent 4bd7daa205
commit 71b1638d9a
6 changed files with 15 additions and 4 deletions

View File

@ -95,6 +95,7 @@ function notification($params)
if ($params['type'] == NOTIFY_MAIL) { if ($params['type'] == NOTIFY_MAIL) {
$itemlink = $siteurl.'/message/'.$params['item']['id']; $itemlink = $siteurl.'/message/'.$params['item']['id'];
$params["link"] = $itemlink;
$subject = L10n::t('[Friendica:Notify] New mail received at %s', $sitename); $subject = L10n::t('[Friendica:Notify] New mail received at %s', $sitename);

View File

@ -48,9 +48,13 @@ class Event extends BaseObject
} }
if ($simple) { if ($simple) {
$o = "<h3>" . BBCode::convert($event['summary'], false, $simple) . "</h3>"; if (!empty($event['summary'])) {
$o = "<h3>" . BBCode::convert($event['summary'], false, $simple) . "</h3>";
}
$o .= "<div>" . BBCode::convert($event['desc'], false, $simple) . "</div>"; if (!empty($event['desc'])) {
$o .= "<div>" . BBCode::convert($event['desc'], false, $simple) . "</div>";
}
$o .= "<h4>" . L10n::t('Starts:') . "</h4><p>" . $event_start . "</p>"; $o .= "<h4>" . L10n::t('Starts:') . "</h4><p>" . $event_start . "</p>";

View File

@ -705,6 +705,10 @@ class GContact
$doprobing = (((time() - $last_contact) > (90 * 86400)) && ((time() - $last_failure) > (90 * 86400))); $doprobing = (((time() - $last_contact) > (90 * 86400)) && ((time() - $last_failure) > (90 * 86400)));
} }
} else { } else {
$contact['location'] = defaults($contact, 'location', '');
$contact['about'] = defaults($contact, 'about', '');
$contact['generation'] = defaults($contact, 'generation', 0);
q( q(
"INSERT INTO `gcontact` (`name`, `nick`, `addr` , `network`, `url`, `nurl`, `photo`, `created`, `updated`, `location`, `about`, `hide`, `generation`) "INSERT INTO `gcontact` (`name`, `nick`, `addr` , `network`, `url`, `nurl`, `photo`, `created`, `updated`, `location`, `about`, `hide`, `generation`)
VALUES ('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d)", VALUES ('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d)",

View File

@ -1848,6 +1848,8 @@ class DFRN
DBA::insert('mail', $msg); DBA::insert('mail', $msg);
$msg["id"] = DBA::lastInsertId();
// send notifications. // send notifications.
/// @TODO Arange this mess /// @TODO Arange this mess
$notif_params = [ $notif_params = [

View File

@ -3543,7 +3543,7 @@ class Diaspora
if ($item["attach"]) { if ($item["attach"]) {
$cnt = preg_match_all('/href=\"(.*?)\"(.*?)title=\"(.*?)\"/ism', $item["attach"], $matches, PREG_SET_ORDER); $cnt = preg_match_all('/href=\"(.*?)\"(.*?)title=\"(.*?)\"/ism', $item["attach"], $matches, PREG_SET_ORDER);
if (cnt) { if ($cnt) {
$body .= "\n".L10n::t("Attachments:")."\n"; $body .= "\n".L10n::t("Attachments:")."\n";
foreach ($matches as $mtch) { foreach ($matches as $mtch) {
$body .= "[".$mtch[3]."](".$mtch[1].")\n"; $body .= "[".$mtch[3]."](".$mtch[1].")\n";

View File

@ -1356,7 +1356,7 @@ class OStatus
"href" => $siteinfo["url"], "href" => $siteinfo["url"],
"type" => "text/html; charset=UTF-8", "type" => "text/html; charset=UTF-8",
"length" => "", "length" => "",
"title" => $siteinfo["title"]]; "title" => defaults($siteinfo, "title", $siteinfo["url"])];
XML::addElement($doc, $root, "link", "", $attributes); XML::addElement($doc, $root, "link", "", $attributes);
break; break;
default: default: