aboutsummaryrefslogtreecommitdiff
path: root/views/failsafe/page_shells/default.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-12-08 01:19:38 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-12-08 01:19:38 +0000
commitd7adaddab7189bc493d22d96fec424aedca09b11 (patch)
treeebfd5c994083bed934bbd23fa403cadf778849fa /views/failsafe/page_shells/default.php
parente8380d051e50abec45b8ad3ed84ae57644b017d5 (diff)
downloadelgg-d7adaddab7189bc493d22d96fec424aedca09b11.tar.gz
elgg-d7adaddab7189bc493d22d96fec424aedca09b11.tar.bz2
reorganized the page views as discussed
git-svn-id: http://code.elgg.org/elgg/trunk@7559 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/failsafe/page_shells/default.php')
-rw-r--r--views/failsafe/page_shells/default.php60
1 files changed, 0 insertions, 60 deletions
diff --git a/views/failsafe/page_shells/default.php b/views/failsafe/page_shells/default.php
deleted file mode 100644
index 0ce63cc1d..000000000
--- a/views/failsafe/page_shells/default.php
+++ /dev/null
@@ -1,60 +0,0 @@
-<?php
-/**
- * Elgg failsafe pageshell
- * Special viewtype for rendering exceptions. Includes minimal code so as not to
- * create a "Exception thrown without a stack frame in Unknown on line 0" error
- *
- * @package Elgg
- * @subpackage Core
- *
- * @uses $vars['title'] The page title
- * @uses $vars['body'] The main content of the page
- */
-
-// we won't trust server configuration but specify utf-8
-header('Content-type: text/html; charset=utf-8');
-
-?>
-<html>
- <head>
- <title><?php echo $vars['title']; ?></title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-
- <style type="text/css">
-
- body {
- text-align:left;
- margin:0;
- padding:0;
- background: #4690d6;
- font: 80%/1.5 "Lucida Grande", Verdana, sans-serif;
- color: #333333;
- }
- p {
- margin: 0px 0px 15px 0;
- }
- #wrapper {
- background:white;
- width:570px;
- margin:auto;
- padding:10px 40px;
- margin-bottom:40px;
- margin-top:20px;
- border-right: 1px solid #666666;
- border-bottom: 1px solid #666666;
- }
- .messages_exception {
- background:#FDFFC3;
- display:block;
- padding:10px;
- }
- </style>
-
- </head>
- <body>
- <div id="wrapper">
- <h1><?php echo $vars['title']; ?></h1>
- <?php echo $vars['body']; ?>
- </div>
- </body>
-</html>