From 0df6975c596a17073a54a7f384e4e28ac2d173f6 Mon Sep 17 00:00:00 2001
From: Uma <uma.s@vtiger.com>
Date: Fri, 15 May 2020 14:15:13 +0530
Subject: [PATCH] Api review comments are been addressed

---
 vtlib/Vtiger/Functions.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/vtlib/Vtiger/Functions.php b/vtlib/Vtiger/Functions.php
index 9a2eb9057..c1fb483dd 100644
--- a/vtlib/Vtiger/Functions.php
+++ b/vtlib/Vtiger/Functions.php
@@ -1571,11 +1571,11 @@ class Vtiger_Functions {
             $query = "SELECT attachmentsid FROM vtiger_seattachmentsrel WHERE crmid = ?";
             $result = $adb->pquery($query, array($crmid));
             $noofrows = $adb->num_rows($result);
-            if ($adb->num_rows($result) > 1) {
+            if ($noofrows > 1) {
                 for ($i = 0; $i < $noofrows; $i++) {
                     $attachmentIds[] = vtws_getId($WsEntityId,$adb->query_result($result, $i, 'attachmentsid'));
                 }
-            } else if($adb->num_rows($result) > 0 && $adb->num_rows($result) == 1){
+            } else if($noofrows > 0){
                 $attachmentIds[] = vtws_getId($WsEntityId, $adb->query_result($result, 0, 'attachmentsid'));
             }
         }
-- 
GitLab