Show
Ignore:
Timestamp:
01/18/06 18:45:19 (6 years ago)
Author:
john
Message:

Made all the file php long tags (uglysvn up)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/trax/vendor/trax/templates/error.phtml

    r72 r117  
    11<html> 
    22<head> 
    3   <title><?=$error_heading?></title> 
     3  <title><?php echo $error_heading ?></title> 
    44  <style> 
    55    body { background-color: #fff; color: #333; } 
     
    4040<body> 
    4141 
    42 <h1><?=$error_heading?></h1> 
     42<h1><?php echo $error_heading ?></h1> 
    4343 
    44 <p><pre><?=$error_message?></pre></p> 
     44<p><pre><?php echo $error_message ?></pre></p> 
    4545 
    46 <? if($trace): ?> 
     46<?php if($trace): ?> 
    4747<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; ?> 
    5050 
    5151<p><a href="#" onclick="expandContract('session_dump')">Show $_SESSION dump</a></p> 
    5252<div id="session_dump" style="display:none"><pre class='debug_dump'> 
    53 <?= print_r($_SESSION, true)?> 
     53<?php echo print_r($_SESSION, true) ?> 
    5454</pre></div> 
    5555 
    5656<p><a href="#" onclick="expandContract('get_dump')">Show $_GET dump</a></p> 
    5757<div id="get_dump" style="display:none"><pre class='debug_dump'> 
    58 <?= print_r($_GET, true)?> 
     58<?php echo print_r($_GET, true) ?> 
    5959</pre></div> 
    6060 
    6161<p><a href="#" onclick="expandContract('post_dump')">Show $_POST dump</a></p> 
    6262<div id="post_dump" style="display:none"><pre class='debug_dump'> 
    63 <?= print_r($_POST, true)?> 
     63<?php echo print_r($_POST, true) ?> 
    6464</pre></div> 
    6565 
    6666<p><a href="#" onclick="expandContract('cookie_dump')">Show $_COOKIE dump</a></p> 
    6767<div id="cookie_dump" style="display:none"><pre class='debug_dump'> 
    68 <?= print_r($_COOKIE, true)?> 
     68<?php echo print_r($_COOKIE, true) ?> 
    6969</pre></div> 
    7070 
    7171<p><a href="#" onclick="expandContract('file_dump')">Show $_FILES dump</a></p> 
    7272<div id="file_dump" style="display:none"><pre class='debug_dump'> 
    73 <?= print_r($_FILES, true)?> 
     73<?php echo print_r($_FILES, true) ?> 
    7474</pre></div> 
    7575