diff options
Diffstat (limited to 'system/application/controllers')
-rw-r--r-- | system/application/controllers/index.html | 18 | ||||
-rw-r--r-- | system/application/controllers/welcome.php | 32 |
2 files changed, 25 insertions, 25 deletions
diff --git a/system/application/controllers/index.html b/system/application/controllers/index.html index 065d2da5e..c942a79ce 100644 --- a/system/application/controllers/index.html +++ b/system/application/controllers/index.html @@ -1,10 +1,10 @@ -<html>
-<head>
- <title>403 Forbidden</title>
-</head>
-<body>
-
-<p>Directory access is forbidden.</p>
-
-</body>
+<html> +<head> + <title>403 Forbidden</title> +</head> +<body> + +<p>Directory access is forbidden.</p> + +</body> </html>
\ No newline at end of file diff --git a/system/application/controllers/welcome.php b/system/application/controllers/welcome.php index ec16000df..20d48855e 100644 --- a/system/application/controllers/welcome.php +++ b/system/application/controllers/welcome.php @@ -1,17 +1,17 @@ -<?php
-
-class Welcome extends Controller {
-
- function Welcome()
- {
- parent::Controller();
- }
-
- function index()
- {
- $this->load->view('welcome_message');
- }
-}
-
-/* End of file welcome.php */
+<?php + +class Welcome extends Controller { + + function Welcome() + { + parent::Controller(); + } + + function index() + { + $this->load->view('welcome_message'); + } +} + +/* End of file welcome.php */ /* Location: ./system/application/controllers/welcome.php */
\ No newline at end of file |