From 69734f2addadb07491dc1792b0387ecdc81cd625 Mon Sep 17 00:00:00 2001 From: marcdeb1 Date: Wed, 10 Oct 2018 14:40:42 +0200 Subject: [PATCH] Changed getLink function name --- src/Model/Entity/Claim.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Model/Entity/Claim.php b/src/Model/Entity/Claim.php index 3a2659f..e2d3cb7 100644 --- a/src/Model/Entity/Claim.php +++ b/src/Model/Entity/Claim.php @@ -5,7 +5,7 @@ namespace App\Model\Entity; use Cake\ORM\Entity; class Claim extends Entity { - function getLink() { + function getLbryLink() { $link = $this->Name; if (isset($this->Publisher->Name)) { $link = $this->Publisher->Name . '/' . $link;