]> git.mxchange.org Git - friendica.git/commitdiff
Use more Attach model
authorfabrixxm <fabrix.xm@gmail.com>
Thu, 3 Jan 2019 17:39:55 +0000 (18:39 +0100)
committerHypolite Petovan <hypolite@mrpetovan.com>
Mon, 21 Jan 2019 15:00:47 +0000 (10:00 -0500)
mod/item.php

index 3d6d886eeb33042f05457529edf9bc0cb150fd56..1c8525528bc3a133d88a134663518a96e08a88ad 100644 (file)
@@ -32,6 +32,7 @@ use Friendica\Model\Conversation;
 use Friendica\Model\FileTag;
 use Friendica\Model\Item;
 use Friendica\Model\Photo;
+use Friendica\Model\Attach;
 use Friendica\Protocol\Diaspora;
 use Friendica\Protocol\Email;
 use Friendica\Util\DateTimeFormat;
@@ -489,14 +490,14 @@ function item_post(App $a) {
 
                                $condition = ['allow_cid' => $srch, 'allow_gid' => '', 'deny_cid' => '', 'deny_gid' => '',
                                                'id' => $attach];
-                               if (!DBA::exists('attach', $condition)) {
+                               if (!Attach::exists($condition)) {
                                        continue;
                                }
 
                                $fields = ['allow_cid' => $str_contact_allow, 'allow_gid' => $str_group_allow,
                                                'deny_cid' => $str_contact_deny, 'deny_gid' => $str_group_deny];
                                $condition = ['id' => $attach];
-                               DBA::update('attach', $fields, $condition);
+                               Attach::update($fields, $condition);
                        }
                }
        }
@@ -539,8 +540,8 @@ function item_post(App $a) {
        if (preg_match_all('/(\[attachment\]([0-9]+)\[\/attachment\])/',$body,$match)) {
                foreach ($match[2] as $mtch) {
                        $fields = ['id', 'filename', 'filesize', 'filetype'];
-                       $attachment = DBA::selectFirst('attach', $fields, ['id' => $mtch]);
-                       if (DBA::isResult($attachment)) {
+                       $attachment = Attach::selectFirst($fields, ['id' => $mtch]);
+                       if ($attachment !== false) {
                                if (strlen($attachments)) {
                                        $attachments .= ',';
                                }