Andrey Andreev | c5536aa | 2012-11-01 17:33:58 +0200 | [diff] [blame] | 1 | <?php |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 2 | /** |
| 3 | * CodeIgniter |
| 4 | * |
Phil Sturgeon | 07c1ac8 | 2012-03-09 17:03:37 +0000 | [diff] [blame] | 5 | * An open source application development framework for PHP 5.2.4 or newer |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 6 | * |
| 7 | * NOTICE OF LICENSE |
Andrey Andreev | e734b38 | 2012-03-26 13:42:36 +0300 | [diff] [blame] | 8 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 9 | * Licensed under the Academic Free License version 3.0 |
Andrey Andreev | e734b38 | 2012-03-26 13:42:36 +0300 | [diff] [blame] | 10 | * |
Derek Jones | 61df906 | 2011-10-21 09:55:40 -0500 | [diff] [blame] | 11 | * This source file is subject to the Academic Free License (AFL 3.0) that is |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 12 | * bundled with this package in the files license_afl.txt / license_afl.rst. |
| 13 | * It is also available through the world wide web at this URL: |
| 14 | * http://opensource.org/licenses/AFL-3.0 |
| 15 | * If you did not receive a copy of the license and are unable to obtain it |
| 16 | * through the world wide web, please send an email to |
| 17 | * licensing@ellislab.com so we can send you a copy immediately. |
| 18 | * |
| 19 | * @package CodeIgniter |
| 20 | * @author EllisLab Dev Team |
Andrey Andreev | 80500af | 2013-01-01 08:16:53 +0200 | [diff] [blame] | 21 | * @copyright Copyright (c) 2008 - 2013, EllisLab, Inc. (http://ellislab.com/) |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 22 | * @license http://opensource.org/licenses/AFL-3.0 Academic Free License (AFL 3.0) |
| 23 | * @link http://codeigniter.com |
| 24 | * @since Version 1.0 |
| 25 | * @filesource |
| 26 | */ |
Andrey Andreev | c5536aa | 2012-11-01 17:33:58 +0200 | [diff] [blame] | 27 | defined('BASEPATH') OR exit('No direct script access allowed'); |
Andrey Andreev | e734b38 | 2012-03-26 13:42:36 +0300 | [diff] [blame] | 28 | ?><!DOCTYPE html> |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 29 | <html lang="en"> |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 30 | <head> |
kenjis | 2d297cb | 2011-10-04 12:00:55 +0900 | [diff] [blame] | 31 | <meta charset="utf-8"> |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 32 | <title>Database Error</title> |
| 33 | <style type="text/css"> |
| 34 | |
Andrey Andreev | 0af0258 | 2012-10-05 13:34:32 +0300 | [diff] [blame] | 35 | ::selection { background-color: #E13300; color: white; } |
| 36 | ::-moz-selection { background-color: #E13300; color: white; } |
| 37 | ::-webkit-selection { background-color: #E13300; color: white; } |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 38 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 39 | body { |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 40 | background-color: #fff; |
| 41 | margin: 40px; |
| 42 | font: 13px/20px normal Helvetica, Arial, sans-serif; |
| 43 | color: #4F5155; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 44 | } |
| 45 | |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 46 | a { |
| 47 | color: #003399; |
| 48 | background-color: transparent; |
| 49 | font-weight: normal; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | h1 { |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 53 | color: #444; |
| 54 | background-color: transparent; |
| 55 | border-bottom: 1px solid #D0D0D0; |
| 56 | font-size: 19px; |
| 57 | font-weight: normal; |
| 58 | margin: 0 0 14px 0; |
| 59 | padding: 14px 15px 10px 15px; |
| 60 | } |
| 61 | |
| 62 | code { |
| 63 | font-family: Consolas, Monaco, Courier New, Courier, monospace; |
| 64 | font-size: 12px; |
| 65 | background-color: #f9f9f9; |
| 66 | border: 1px solid #D0D0D0; |
| 67 | color: #002166; |
| 68 | display: block; |
| 69 | margin: 14px 0 14px 0; |
| 70 | padding: 12px 10px 12px 10px; |
| 71 | } |
| 72 | |
| 73 | #container { |
| 74 | margin: 10px; |
| 75 | border: 1px solid #D0D0D0; |
dixy | 43ef706 | 2012-05-05 18:26:54 +0200 | [diff] [blame] | 76 | box-shadow: 0 0 8px #D0D0D0; |
Andrey Andreev | 0af0258 | 2012-10-05 13:34:32 +0300 | [diff] [blame] | 77 | -moz-box-shadow: 0 0 8px #D0D0D0; |
| 78 | -webkit-box-shadow: 0 0 8px #D0D0D0; |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | p { |
| 82 | margin: 12px 15px 12px 15px; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 83 | } |
| 84 | </style> |
| 85 | </head> |
| 86 | <body> |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 87 | <div id="container"> |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 88 | <h1><?php echo $heading; ?></h1> |
| 89 | <?php echo $message; ?> |
| 90 | </div> |
| 91 | </body> |
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 92 | </html> |