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

    r113 r117  
    33<html> 
    44<head> 
    5   <title>Scaffolding : <?= $controller_name ?></title> 
     5  <title>Scaffolding : <?php echo $controller_name ?></title> 
    66  <style> 
    77    body { background-color: #fff; color: #333; } 
     
    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>