diff options
author | Derek Jones <derek.jones@ellislab.com> | 2008-05-11 17:48:20 +0200 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2008-05-11 17:48:20 +0200 |
commit | 5583e1aae64ff7e902136c4ba610d438dc2015d4 (patch) | |
tree | a022ae3bae241c87099b3856f52d5baa0ee68d00 /system/application | |
parent | 62d6c6d954cb64ea80d43acad7d2da795c0710b5 (diff) |
removed closing PHP tag from all framework files
Diffstat (limited to 'system/application')
-rw-r--r-- | system/application/config/autoload.php | 1 | ||||
-rw-r--r-- | system/application/config/config.php | 1 | ||||
-rw-r--r-- | system/application/config/constants.php | 1 | ||||
-rw-r--r-- | system/application/config/database.php | 1 | ||||
-rw-r--r-- | system/application/config/hooks.php | 1 | ||||
-rw-r--r-- | system/application/config/mimes.php | 1 | ||||
-rw-r--r-- | system/application/config/routes.php | 1 | ||||
-rw-r--r-- | system/application/config/smileys.php | 1 | ||||
-rw-r--r-- | system/application/config/user_agents.php | 1 | ||||
-rw-r--r-- | system/application/controllers/welcome.php | 1 |
10 files changed, 0 insertions, 10 deletions
diff --git a/system/application/config/autoload.php b/system/application/config/autoload.php index 2dfbe422c..15e2e7b40 100644 --- a/system/application/config/autoload.php +++ b/system/application/config/autoload.php @@ -122,4 +122,3 @@ $autoload['model'] = array(); // $autoload['core'] = array();
-?>
\ No newline at end of file diff --git a/system/application/config/config.php b/system/application/config/config.php index 24fbb4b7a..22fe4513a 100644 --- a/system/application/config/config.php +++ b/system/application/config/config.php @@ -311,4 +311,3 @@ $config['time_reference'] = 'local'; $config['rewrite_short_tags'] = FALSE;
-?>
\ No newline at end of file diff --git a/system/application/config/constants.php b/system/application/config/constants.php index 3f7975635..303d87372 100644 --- a/system/application/config/constants.php +++ b/system/application/config/constants.php @@ -36,4 +36,3 @@ define('FOPEN_READ_WRITE_CREATE', 'a+b'); define('FOPEN_WRITE_CREATE_STRICT', 'xb');
define('FOPEN_READ_WRITE_CREATE_STRICT', 'x+b');
-?>
\ No newline at end of file diff --git a/system/application/config/database.php b/system/application/config/database.php index 6973c5afa..feefc77e1 100644 --- a/system/application/config/database.php +++ b/system/application/config/database.php @@ -50,4 +50,3 @@ $db['default']['cachedir'] = ""; $db['default']['char_set'] = "utf8";
$db['default']['dbcollat'] = "utf8_general_ci";
-?>
\ No newline at end of file diff --git a/system/application/config/hooks.php b/system/application/config/hooks.php index f0a0d6e3a..4fce538d0 100644 --- a/system/application/config/hooks.php +++ b/system/application/config/hooks.php @@ -11,4 +11,3 @@ */ -?>
\ No newline at end of file diff --git a/system/application/config/mimes.php b/system/application/config/mimes.php index 7f5f20803..fae325b24 100644 --- a/system/application/config/mimes.php +++ b/system/application/config/mimes.php @@ -99,4 +99,3 @@ $mimes = array( 'hqx' => 'application/mac-binhex40', );
-?>
\ No newline at end of file diff --git a/system/application/config/routes.php b/system/application/config/routes.php index 1395b7aed..ec03d77b5 100644 --- a/system/application/config/routes.php +++ b/system/application/config/routes.php @@ -43,4 +43,3 @@ $route['default_controller'] = "welcome";
$route['scaffolding_trigger'] = "";
-?>
\ No newline at end of file diff --git a/system/application/config/smileys.php b/system/application/config/smileys.php index a227d8b68..abecede68 100644 --- a/system/application/config/smileys.php +++ b/system/application/config/smileys.php @@ -61,4 +61,3 @@ $smileys = array( ':question:' => array('question.gif', '19', '19', 'question') // no comma after last item ); -?>
\ No newline at end of file diff --git a/system/application/config/user_agents.php b/system/application/config/user_agents.php index 08a665f9d..873a5a503 100644 --- a/system/application/config/user_agents.php +++ b/system/application/config/user_agents.php @@ -100,4 +100,3 @@ $robots = array( );
-?>
\ No newline at end of file diff --git a/system/application/controllers/welcome.php b/system/application/controllers/welcome.php index 7f7296d81..243423a65 100644 --- a/system/application/controllers/welcome.php +++ b/system/application/controllers/welcome.php @@ -12,4 +12,3 @@ class Welcome extends Controller { $this->load->view('welcome_message'); } } -?>
\ No newline at end of file |