diff options
author | Florian Pritz <bluewind@xinu.at> | 2012-04-08 23:36:30 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2012-04-09 20:47:38 +0200 |
commit | 4bbdd1d7737c100668c7adb952ec181f941e6a55 (patch) | |
tree | d93956706b35cfdff6846811257265e2879903d7 /application/models/file_mod.php | |
parent | 35b45a559472a660dc08a3bc518161e7ab400175 (diff) |
improve page titles
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/models/file_mod.php')
-rw-r--r-- | application/models/file_mod.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/models/file_mod.php b/application/models/file_mod.php index 08f43853c..68755cc54 100644 --- a/application/models/file_mod.php +++ b/application/models/file_mod.php @@ -125,7 +125,7 @@ class File_mod extends CI_Model { function non_existent() { - $data["title"] = "Not Found"; + $data["title"] .= " - Not Found"; $this->output->set_status_header(404); $this->load->view($this->var->view_dir.'/header', $data); $this->load->view($this->var->view_dir.'/non_existent', $data); |