]> git.mxchange.org Git - friendica.git/blobdiff - mod/attach.php
More usage of dbm::is_result($r) instead of count($r):
[friendica.git] / mod / attach.php
index 849faa26ec54ebc45fa9c6a32a476f2b162834ff..274acfc2bed8af1f4e23af00eb267e6fa9925cfd 100644 (file)
@@ -1,7 +1,7 @@
 <?php
+
 require_once('include/security.php');
 
-if(! function_exists('attach_init')) {
 function attach_init(&$a) {
 
        if($a->argc != 2) {
@@ -16,7 +16,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 +29,7 @@ function attach_init(&$a) {
                dbesc($item_id)
        );
 
-       if(! count($r)) {
+       if(! dbm::is_result($r)) {
                notice( t('Permission denied.') . EOL);
                return;
        }
@@ -47,4 +47,3 @@ function attach_init(&$a) {
        killme();
        // NOTREACHED
 }
-}