diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-12-22 15:13:36 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-12-22 15:13:36 -0800 |
commit | b2291a0e34234ee30ea1d80b70122b68a8869917 (patch) | |
tree | 1816f1edf908bd6523966b17520a63011572f0fa /system/messages | |
parent | fda4227bb10d7c9ae4de5f16e59890bf7cf3b83b (diff) |
Fix preamble issues. Upstream tickets:
http://dev.kohanaframework.org/issues/2457
http://dev.kohanaframework.org/issues/2458
Diffstat (limited to 'system/messages')
-rw-r--r-- | system/messages/core.php | 2 | ||||
-rw-r--r-- | system/messages/validation/default.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/system/messages/core.php b/system/messages/core.php index 64f897e8..a9595c1a 100644 --- a/system/messages/core.php +++ b/system/messages/core.php @@ -1,4 +1,4 @@ -<?php +<?php defined('SYSPATH') or die('No direct script access.'); $messages = array ( diff --git a/system/messages/validation/default.php b/system/messages/validation/default.php index 2c59fa06..2f379cd3 100644 --- a/system/messages/validation/default.php +++ b/system/messages/validation/default.php @@ -1,4 +1,4 @@ -<?php defined('SYSPATH') or die('No direct script access.');
+<?php defined('SYSPATH') or die('No direct script access.'); $messages = array(
'required' => 'The :field field is required',
|