diff options
Diffstat (limited to 'application/models/file_mod.php')
-rw-r--r-- | application/models/file_mod.php | 7 |
1 files changed, 1 insertions, 6 deletions
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"); |