From e7797f36cf7fd98c825f497bc7f24015c95e8d22 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Tue, 1 May 2012 21:52:03 +0200 Subject: move file link generation from controller to view Signed-off-by: Florian Pritz --- application/models/file_mod.php | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'application/models') diff --git a/application/models/file_mod.php b/application/models/file_mod.php index 6030aefdd..d91157a33 100644 --- a/application/models/file_mod.php +++ b/application/models/file_mod.php @@ -282,12 +282,7 @@ class File_mod extends CI_Model { } $this->data['title'] = htmlspecialchars($filedata['filename']); - $this->data['raw_link'] = site_url($id); - $this->data['new_link'] = site_url(); - $this->data['plain_link'] = site_url($id.'/plain'); - $this->data['auto_link'] = site_url($id).'/'; - $this->data['rmd_link'] = site_url($id.'/rmd'); - $this->data['delete_link'] = site_url("file/delete/".$id); + $this->data['id'] = $id; header("Content-Type: text/html\n"); -- cgit v1.2.3-24-g4f1b