From: Jonny Tischbein Date: Tue, 2 Oct 2018 16:24:16 +0000 (+0200) Subject: wrong var name - conversation not found X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6d1b98dc0e951445e447a60d3ee17368891d17b8;p=friendica.git wrong var name - conversation not found --- diff --git a/mod/message.php b/mod/message.php index 38a9ecd9c2..264912da67 100644 --- a/mod/message.php +++ b/mod/message.php @@ -166,7 +166,7 @@ function message_content(App $a) $cmd = $a->argv[1]; if ($cmd === 'drop') { $message = DBA::selectFirst('mail', ['convid'], ['id' => $a->argv[2], 'uid' => local_user()]); - if(!DBA::isResult($r)){ + if(!DBA::isResult($message)){ info(L10n::t('Conversation not found.') . EOL); goaway('/message'); }