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/scaffolds/layout.phtml

    r106 r117  
    8282<body> 
    8383 
    84 <? if(Session::isset_flash("notice")): ?> 
    85     <p style="color: green"><?= Session::flash("notice") ?></p> 
    86 <? elseif(Session::isset_flash("error")): ?> 
    87     <p style="color: red"><?= Session::flash("error") ?></p> 
    88 <? endif; ?> 
     84<?php if(Session::isset_flash("notice")): ?> 
     85    <p style="color: green"><?php echo Session::flash("notice") ?></p> 
     86<?php elseif(Session::isset_flash("error")): ?> 
     87    <p style="color: red"><?php echo Session::flash("error") ?></p> 
     88<?php endif; ?> 
    8989 
    90 <?= $content_for_layout ?> 
     90<?php echo $content_for_layout ?> 
    9191 
    9292</body>