From d587c79e51a090899d555a474ebc8550324196da Mon Sep 17 00:00:00 2001 From: Mathieu Darse Date: Tue, 26 Aug 2014 16:43:49 +0200 Subject: [PATCH] Remove bitly property --- lib/classes/record/adapter.php | 9 --------- 1 file changed, 9 deletions(-) diff --git a/lib/classes/record/adapter.php b/lib/classes/record/adapter.php index 89a1894a11..98a00deac4 100644 --- a/lib/classes/record/adapter.php +++ b/lib/classes/record/adapter.php @@ -120,12 +120,6 @@ class record_adapter implements record_Interface, cache_cacheableInterface */ protected $caption_record; - /** - * - * @var string - */ - protected $bitly_link; - /** * * @var string @@ -174,7 +168,6 @@ class record_adapter implements record_Interface, cache_cacheableInterface $this->mime = $datas['mime']; $this->sha256 = $datas['sha256']; - $this->bitly_link = $datas['bitly_link']; $this->original_name = $datas['original_name']; $this->type = $datas['type']; $this->grouping = $datas['grouping']; @@ -209,14 +202,12 @@ class record_adapter implements record_Interface, cache_cacheableInterface $this->grouping = ($row['parent_record_id'] == '1'); $this->type = $row['type']; $this->original_name = $row['originalname']; - $this->bitly_link = $row['bitly']; $this->sha256 = $row['sha256']; $this->mime = $row['mime']; $datas = [ 'mime' => $this->mime , 'sha256' => $this->sha256 - , 'bitly_link' => $this->bitly_link , 'original_name' => $this->original_name , 'type' => $this->type , 'grouping' => $this->grouping