mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:42:54 +00:00
Fix further notes and warnings
This commit is contained in:
parent
d62cd5defc
commit
100dfea524
2 changed files with 13 additions and 6 deletions
|
@ -1061,12 +1061,12 @@ class GServer
|
||||||
$attr = [];
|
$attr = [];
|
||||||
if ($node->attributes->length) {
|
if ($node->attributes->length) {
|
||||||
foreach ($node->attributes as $attribute) {
|
foreach ($node->attributes as $attribute) {
|
||||||
$attribute->value = @trim($attribute->value);
|
$value = trim($attribute->value);
|
||||||
if (empty($attribute->value)) {
|
if (empty($value)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
$attr[$attribute->name] = $attribute->value;
|
$attr[$attribute->name] = $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empty($attr['name']) || empty($attr['content'])) {
|
if (empty($attr['name']) || empty($attr['content'])) {
|
||||||
|
@ -1117,12 +1117,12 @@ class GServer
|
||||||
$attr = [];
|
$attr = [];
|
||||||
if ($node->attributes->length) {
|
if ($node->attributes->length) {
|
||||||
foreach ($node->attributes as $attribute) {
|
foreach ($node->attributes as $attribute) {
|
||||||
$attribute->value = @trim($attribute->value);
|
$value = trim($attribute->value);
|
||||||
if (empty($attribute->value)) {
|
if (empty($value)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
$attr[$attribute->name] = $attribute->value;
|
$attr[$attribute->name] = $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empty($attr['property']) || empty($attr['content'])) {
|
if (empty($attr['property']) || empty($attr['content'])) {
|
||||||
|
|
|
@ -653,6 +653,9 @@ class Transmitter
|
||||||
public static function ItemArrayFromMail($mail_id)
|
public static function ItemArrayFromMail($mail_id)
|
||||||
{
|
{
|
||||||
$mail = DBA::selectFirst('mail', [], ['id' => $mail_id]);
|
$mail = DBA::selectFirst('mail', [], ['id' => $mail_id]);
|
||||||
|
if (!DBA::isResult($mail)) {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
$reply = DBA::selectFirst('mail', ['uri'], ['parent-uri' => $mail['parent-uri'], 'reply' => false]);
|
$reply = DBA::selectFirst('mail', ['uri'], ['parent-uri' => $mail['parent-uri'], 'reply' => false]);
|
||||||
|
|
||||||
|
@ -1234,6 +1237,10 @@ class Transmitter
|
||||||
*/
|
*/
|
||||||
public static function createNote($item)
|
public static function createNote($item)
|
||||||
{
|
{
|
||||||
|
if (empty($item)) {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
if ($item['event-type'] == 'event') {
|
if ($item['event-type'] == 'event') {
|
||||||
$type = 'Event';
|
$type = 'Event';
|
||||||
} elseif (!empty($item['title'])) {
|
} elseif (!empty($item['title'])) {
|
||||||
|
|
Loading…
Reference in a new issue