mirror of
https://github.com/friendica/friendica
synced 2024-11-19 01:03:40 +00:00
parent
15fb198109
commit
409e939fc4
1 changed files with 2 additions and 2 deletions
|
@ -71,7 +71,7 @@ function dfrn_notify_post(App $a) {
|
||||||
|
|
||||||
$user = DBA::selectFirst('user', ['uid'], ['nickname' => $a->argv[1]]);
|
$user = DBA::selectFirst('user', ['uid'], ['nickname' => $a->argv[1]]);
|
||||||
if (!DBA::isResult($user)) {
|
if (!DBA::isResult($user)) {
|
||||||
logger('User not found for nickname ' . $$a->argv[1]);
|
logger('User not found for nickname ' . $a->argv[1]);
|
||||||
System::xmlExit(3, 'User not found');
|
System::xmlExit(3, 'User not found');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -280,7 +280,7 @@ function dfrn_notify_content(App $a) {
|
||||||
|
|
||||||
$user = DBA::selectFirst('user', ['uid'], ['nickname' => $a->argv[1]]);
|
$user = DBA::selectFirst('user', ['uid'], ['nickname' => $a->argv[1]]);
|
||||||
if (!DBA::isResult($user)) {
|
if (!DBA::isResult($user)) {
|
||||||
logger('User not found for nickname ' . $$a->argv[1]);
|
logger('User not found for nickname ' . $a->argv[1]);
|
||||||
killme();
|
killme();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue