Mysqli errors: Trying to access array offset on value of type bool. Fixed. Please...
[fa-stable.git] / includes / db / crm_contacts_db.inc
index a226e496c81f3a583a0eb8c786228dd84e3bdd39..98862b73ae3c25d2a6ad338a34eef770e38850cb 100644 (file)
@@ -242,7 +242,7 @@ function get_crm_category_name($id)
        $result = db_query($sql, "could not get sales type");
 
        $row = db_fetch_row($result);
-       return $row[0];
+       return is_array($row) ? $row[0] : false;
 }
 
 //----------------------------------------------------------------------------------------
@@ -313,4 +313,3 @@ function is_crm_category_used($id)
 }
 
 
-?>
\ No newline at end of file