| 1 |
<style type="text/css"> |
|---|
| 2 |
a { color: #333 } |
|---|
| 3 |
h1 { margin: 0 0 0 10px; padding: 10px 0 10px 0; font-weight: bold; font-size: 120% } |
|---|
| 4 |
h2 { margin: 0; padding: 5px 0; font-size: 110% } |
|---|
| 5 |
ul { padding-left: 0; list-style: decimal } |
|---|
| 6 |
ul li { padding-bottom: 5px; margin: 0 } |
|---|
| 7 |
ol { font-family: monospace; white-space: pre; list-style-position: inside; margin: 0; padding: 10px 0 } |
|---|
| 8 |
ol li { margin: -5px; padding: 0 } |
|---|
| 9 |
ol .selected { font-weight: bold; background-color: #ddd; padding: 2px 0 } |
|---|
| 10 |
table.vars { padding: 0; margin: 0; border: 1px solid #999; background-color: #fff; } |
|---|
| 11 |
table.vars th { padding: 2px; background-color: #ddd; font-weight: bold } |
|---|
| 12 |
table.vars td { padding: 2px; font-family: monospace; white-space: pre } |
|---|
| 13 |
p.error { padding: 10px; background-color: #f00; font-weight: bold; text-align: center; -moz-border-radius: 10px; } |
|---|
| 14 |
p.error a { color: #fff } |
|---|
| 15 |
#main { padding: 20px; padding-left: 40px; text-align:left; } |
|---|
| 16 |
#message { padding: 10px; margin-bottom: 10px; background-color: #eee; -moz-border-radius: 10px } |
|---|
| 17 |
</style> |
|---|
| 18 |
<script type="text/javascript"> |
|---|
| 19 |
function toggle(id) |
|---|
| 20 |
{ |
|---|
| 21 |
el = document.getElementById(id); el.style.display = el.style.display == 'none' ? 'block' : 'none'; |
|---|
| 22 |
} |
|---|
| 23 |
</script> |
|---|
| 24 |
<div id="main"> |
|---|
| 25 |
<h1>[<?php echo $name ?>]</h1> |
|---|
| 26 |
<h2 id="message"><?php echo $message ?></h2> |
|---|
| 27 |
<?php if ($error_reference): ?> |
|---|
| 28 |
<p class="error"><a href='http://www.symfony-project.com/errors/<?php echo $error_reference ?>'>learn more about this issue</a></p> |
|---|
| 29 |
<?php endif; ?> |
|---|
| 30 |
<h2>stack trace</h2> |
|---|
| 31 |
<ul><li><?php echo implode('</li><li>', $traces) ?></li></ul> |
|---|
| 32 |
|
|---|
| 33 |
<p id="footer"> |
|---|
| 34 |
symfony v.<?php echo file_get_contents(sfConfig::get('sf_symfony_lib_dir').'/VERSION') ?> - php <?php echo PHP_VERSION ?><br /> |
|---|
| 35 |
for help resolving this issue, please visit <a href="http://www.symfony-project.com/">http://www.symfony-project.com/</a>. |
|---|
| 36 |
</p> |
|---|
| 37 |
</div> |
|---|
| 38 |
|
|---|