diff options
Diffstat (limited to 'system/application/models/file_mod.php')
-rw-r--r-- | system/application/models/file_mod.php | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/system/application/models/file_mod.php b/system/application/models/file_mod.php index b93aab354..444c091b2 100644 --- a/system/application/models/file_mod.php +++ b/system/application/models/file_mod.php @@ -195,11 +195,7 @@ class File_mod extends Model { $data['rmd_link'] = site_url($id.'/rmd'); header("Content-Type: text/html\n"); - if ($mode) { - $data['current_highlight'] = $mode; - } else { - $data['current_highlight'] = $this->mime2extension($type); - } + $data['current_highlight'] = $mode; echo $this->load->view('file/html_header', $data, true); $this->load->library("MemcacheLibrary"); if (! $cached = $this->memcachelibrary->get($filedata['hash'].'_'.$mode)) { |