From 305092987b35e89a7ab08d7180c68d09074800d9 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Tue, 7 Dec 2010 16:53:08 +0100 Subject: fix spelling mistake Signed-off-by: Florian Pritz --- system/application/models/file_mod.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'system/application/models/file_mod.php') 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 -- cgit v1.2.3-24-g4f1b