From: Michael <heluecht@pirati.ca>
Date: Wed, 2 May 2018 19:26:15 +0000 (+0000)
Subject: Replace old database queries with the new ones
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d54c79a7722e6ca0ef89ae77a47cd44de8bf2725;p=friendica.git

Replace old database queries with the new ones
---

diff --git a/mod/message.php b/mod/message.php
index 6a48eb658e..822f5aadec 100644
--- a/mod/message.php
+++ b/mod/message.php
@@ -148,7 +148,7 @@ function message_content(App $a)
 
 		$cmd = $a->argv[1];
 		if ($cmd === 'drop') {
-			if (dba::delete('mail', ['id' => $a->argv[2], 'uid' => local_user()])) {
+			if (dba::delete('mail', ['id' => $a->argv[2]])) {
 				info(L10n::t('Message deleted.') . EOL);
 			}
 			//goaway(System::baseUrl(true) . '/message' );
diff --git a/mod/settings.php b/mod/settings.php
index c7e61cbe3b..234731439f 100644
--- a/mod/settings.php
+++ b/mod/settings.php
@@ -149,7 +149,7 @@ function settings_post(App $a)
 		check_form_security_token_redirectOnErr('/settings/oauth', 'settings_oauth');
 
 		$key = $_POST['remove'];
-		dba::delete('tokens', ['id' => $key, 'uid' => local_user()]);
+		dba::delete('tokens', ['id' => $key]);
 		goaway(System::baseUrl(true)."/settings/oauth/");
 		return;
 	}
diff --git a/src/Protocol/DFRN.php b/src/Protocol/DFRN.php
index eb44cb210a..592444e3ca 100644
--- a/src/Protocol/DFRN.php
+++ b/src/Protocol/DFRN.php
@@ -2094,7 +2094,6 @@ class DFRN
 			'confirm' => $relocate["confirm"], 'notify' => $relocate["notify"],
 			'poll' => $relocate["poll"], 'site-pubkey' => $relocate["sitepubkey"]];
 		$condition = ["(`id` = ?) OR (`nurl` = ?)", $importer["id"], normalise_link($old["url"])];
-		dba::update('contact', $fields, $condition);
 
 		// @TODO No dba:update here?
 		dba::update('contact', $fields, $condition);
@@ -2103,11 +2102,6 @@ class DFRN
 
 		logger('Contacts are updated.');
 
-		/// @TODO WHERE DOES $x COME FROM ???
-		if ($x === false) {
-			return false;
-		}
-
 		// update items
 		// This is an extreme performance killer
 		Item::update(['owner-link' => $relocate["url"]], ['owner-link' => $old["url"], 'uid' => $importer["importer_uid"]]);