Add feedback

This commit is contained in:
Philipp Holzer 2021-09-18 12:55:17 +02:00
parent fd22906d70
commit c00da77c67
Signed by: nupplaPhil
GPG Key ID: 24A7501396EB5432
2 changed files with 2 additions and 2 deletions

View File

@ -1462,7 +1462,7 @@ class Database
$row = $this->fetchFirst($sql, $condition);
if (!isset($row['count'])) {
$this->logger->notice('Invalid count.', ['table' => $table, 'expression' => $expression, 'condition' => $condition_string, 'callstack' => System::callstack()]);
$this->logger->notice('Invalid count.', ['table' => $table, 'row' => $row, 'expression' => $expression, 'condition' => $condition_string, 'callstack' => System::callstack()]);
return 0;
} else {
return (int)$row['count'];

View File

@ -290,7 +290,7 @@ class Contact extends BaseModule
$contact_id = $data['user'];
}
if (empty($data)) {
if (!empty($data)) {
$contact = DBA::selectFirst('contact', [], [
'id' => $contact_id,
'uid' => [0, local_user()],