diff options
author | Florian Pritz <bluewind@xssn.at> | 2010-12-07 16:53:08 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xssn.at> | 2010-12-07 16:53:08 +0100 |
commit | 305092987b35e89a7ab08d7180c68d09074800d9 (patch) | |
tree | e30f71af52af4c03da8b2d69b5b1ce1bab856009 /system/application/models | |
parent | df391ca93099e17f15875366dce37cacc9079f42 (diff) |
fix spelling mistake
Signed-off-by: Florian Pritz <bluewind@xssn.at>
Diffstat (limited to 'system/application/models')
-rw-r--r-- | system/application/models/file_mod.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/application/models/file_mod.php b/system/application/models/file_mod.php index 0c52bb012..8716158ad 100644 --- a/system/application/models/file_mod.php +++ b/system/application/models/file_mod.php @@ -138,12 +138,12 @@ class File_mod extends Model { } } - function non_existant() + function non_existent() { $data["title"] = "Not Found"; $this->output->set_status_header(404); $this->load->view('file/header', $data); - $this->load->view('file/non_existant', $data); + $this->load->view('file/non_existent', $data); $this->load->view('file/footer', $data); } @@ -167,7 +167,7 @@ class File_mod extends Model { } else { $this->db->query('DELETE FROM files WHERE id = ? LIMIT 1', array($id)); } - $this->non_existant(); + $this->non_existent(); return; } // MODIFIED SINCE SUPPORT -- START |