30
1
mirror of https://github.com/joomla-extensions/weblinks.git synced 2024-06-01 22:10:50 +00:00

Return empty array on failure

This commit is contained in:
Tuan Pham Ngoc 2021-08-18 14:24:42 +07:00 committed by GitHub
parent bfee41b26d
commit 95d0f86f1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -106,8 +106,10 @@ class ModWeblinksHelper
$item->link = $item->url; $item->link = $item->url;
} }
} }
}
return $items; return $items;
} }
return array();
}
} }