summaryrefslogtreecommitdiff
path: root/system/messages/core.php
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-12-23 12:42:57 -0800
committerBharat Mediratta <bharat@menalto.com>2009-12-23 12:42:57 -0800
commit3e8e13bd2533ff7e3493b27c8a8587dfb65e1b26 (patch)
tree4b89142230e516b3d327f4e835edb49c76fa237f /system/messages/core.php
parent05c50a052348a4ae664e0b4ca475f9fb3228f24b (diff)
Updated Kohana to r4728
Diffstat (limited to 'system/messages/core.php')
-rw-r--r--system/messages/core.php37
1 files changed, 0 insertions, 37 deletions
diff --git a/system/messages/core.php b/system/messages/core.php
deleted file mode 100644
index 64f897e8..00000000
--- a/system/messages/core.php
+++ /dev/null
@@ -1,37 +0,0 @@
-<?php
-
-$messages = array
-(
- 'errors' => array
- (
- E_KOHANA => __('Framework Error'), // __('Please check the Kohana documentation for information about the following error.'),
- E_PAGE_NOT_FOUND => __('Page Not Found'), // __('The requested page was not found. It may have moved, been deleted, or archived.'),
- E_DATABASE_ERROR => __('Database Error'), // __('A database error occurred while performing the requested procedure. Please review the database error below for more information.'),
- E_RECOVERABLE_ERROR => __('Recoverable Error'), // __('An error was detected which prevented the loading of this page. If this problem persists, please contact the website administrator.'),
- E_ERROR => __('Fatal Error'),
- E_COMPILE_ERROR => __('Fatal Error'),
- E_CORE_ERROR => __('Fatal Error'),
- E_USER_ERROR => __('Fatal Error'),
- E_PARSE => __('Syntax Error'),
- E_WARNING => __('Warning Message'),
- E_COMPILE_WARNING => __('Warning Message'),
- E_CORE_WARNING => __('Warning Message'),
- E_USER_WARNING => __('Warning Message'),
- E_STRICT => __('Strict Mode Error'),
- E_NOTICE => __('Runtime Message'),
- E_USER_NOTICE => __('Runtime Message'),
- ),
- 'config' => 'config file',
- 'controller' => 'controller',
- 'helper' => 'helper',
- 'library' => 'library',
- 'driver' => 'driver',
- 'model' => 'model',
- 'view' => 'view',
-);
-
-// E_DEPRECATED is only defined in PHP >= 5.3.0
-if (defined('E_DEPRECATED'))
-{
- $messages['errors'][E_DEPRECATED] = __('Deprecated');
-} \ No newline at end of file