Changeset 117 for trunk/trax/vendor/trax/templates/error.phtml
- Timestamp:
- 01/18/06 18:45:19 (6 years ago)
- Files:
-
- 1 modified
-
trunk/trax/vendor/trax/templates/error.phtml (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/trax/vendor/trax/templates/error.phtml
r72 r117 1 1 <html> 2 2 <head> 3 <title><? =$error_heading?></title>3 <title><?php echo $error_heading ?></title> 4 4 <style> 5 5 body { background-color: #fff; color: #333; } … … 40 40 <body> 41 41 42 <h1><? =$error_heading?></h1>42 <h1><?php echo $error_heading ?></h1> 43 43 44 <p><pre><? =$error_message?></pre></p>44 <p><pre><?php echo $error_message ?></pre></p> 45 45 46 <? if($trace): ?>46 <?php if($trace): ?> 47 47 <a href="#" onclick="expandContract('framework_trace')">Show framework trace</a> 48 <pre id="framework_trace" style="display:none"><code><? =$trace?></code></pre>49 <? endif; ?>48 <pre id="framework_trace" style="display:none"><code><?php echo $trace ?></code></pre> 49 <?php endif; ?> 50 50 51 51 <p><a href="#" onclick="expandContract('session_dump')">Show $_SESSION dump</a></p> 52 52 <div id="session_dump" style="display:none"><pre class='debug_dump'> 53 <? = print_r($_SESSION, true)?>53 <?php echo print_r($_SESSION, true) ?> 54 54 </pre></div> 55 55 56 56 <p><a href="#" onclick="expandContract('get_dump')">Show $_GET dump</a></p> 57 57 <div id="get_dump" style="display:none"><pre class='debug_dump'> 58 <? = print_r($_GET, true)?>58 <?php echo print_r($_GET, true) ?> 59 59 </pre></div> 60 60 61 61 <p><a href="#" onclick="expandContract('post_dump')">Show $_POST dump</a></p> 62 62 <div id="post_dump" style="display:none"><pre class='debug_dump'> 63 <? = print_r($_POST, true)?>63 <?php echo print_r($_POST, true) ?> 64 64 </pre></div> 65 65 66 66 <p><a href="#" onclick="expandContract('cookie_dump')">Show $_COOKIE dump</a></p> 67 67 <div id="cookie_dump" style="display:none"><pre class='debug_dump'> 68 <? = print_r($_COOKIE, true)?>68 <?php echo print_r($_COOKIE, true) ?> 69 69 </pre></div> 70 70 71 71 <p><a href="#" onclick="expandContract('file_dump')">Show $_FILES dump</a></p> 72 72 <div id="file_dump" style="display:none"><pre class='debug_dump'> 73 <? = print_r($_FILES, true)?>73 <?php echo print_r($_FILES, true) ?> 74 74 </pre></div> 75 75
