X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fattach.php;h=6155a3f99e9853c723acd623c64a375367eeb9b0;hb=74d813042fa96dd90955cc5c0da8cf4716485cb8;hp=03f850f0d1749972d7e68e63de295007bf856cb5;hpb=b202e02fbf09859c06ed21cc3b6bec1530ccf1f1;p=friendica.git diff --git a/mod/attach.php b/mod/attach.php index 03f850f0d1..6155a3f99e 100644 --- a/mod/attach.php +++ b/mod/attach.php @@ -1,8 +1,10 @@ argc != 2) { notice( t('Item not available.') . EOL); @@ -16,7 +18,7 @@ function attach_init(&$a) { $r = q("SELECT * FROM `attach` WHERE `id` = %d LIMIT 1", intval($item_id) ); - if(! count($r)) { + if (! dbm::is_result($r)) { notice( t('Item was not found.'). EOL); return; } @@ -29,7 +31,7 @@ function attach_init(&$a) { dbesc($item_id) ); - if(! count($r)) { + if (! dbm::is_result($r)) { notice( t('Permission denied.') . EOL); return; }