From: Hypolite Petovan <hypolite@mrpetovan.com>
Date: Mon, 7 Jan 2019 18:28:02 +0000 (-0500)
Subject: Fix method parameter type in Model\Attach
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=28397fc5fc1ff1f53290e3e9ac118ab57e11dba6;p=friendica.git

Fix method parameter type in Model\Attach
---

diff --git a/src/Model/Attach.php b/src/Model/Attach.php
index bfd5199bd5..bd4269b9e3 100644
--- a/src/Model/Attach.php
+++ b/src/Model/Attach.php
@@ -11,6 +11,7 @@ use Friendica\Core\System;
 use Friendica\Core\StorageManager;
 use Friendica\Database\DBA;
 use Friendica\Database\DBStructure;
+use Friendica\Object\Image;
 use Friendica\Util\Security;
 use Friendica\Util\DateTimeFormat;
 use Friendica\Util\Mimetype;
@@ -257,9 +258,9 @@ class Attach extends BaseObject
 	 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
 	 * @see   \Friendica\Database\DBA::update
 	 */
-	public static function update($fields, $conditions, $img = null, array $old_fields = [])
+	public static function update($fields, $conditions, Image $img = null, array $old_fields = [])
 	{
-		if (!is_null($data)) {
+		if (!is_null($img)) {
 			// get items to update
 			$items = self::select(['backend-class','backend-ref'], $conditions);
 
@@ -268,7 +269,7 @@ class Attach extends BaseObject
 				if ($backend_class !== '') {
 					$fields['backend-ref'] = $backend_class::put($img->asString(), $item['backend-ref']);
 				} else {
-					$fields['data'] = $data;
+					$fields['data'] = $img->asString();
 				}
 			}
 		}