Changeset 117 for trunk/trax/vendor/trax/templates/scaffolds/layout.phtml
- Timestamp:
- 01/18/06 18:45:19 (6 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/trax/vendor/trax/templates/scaffolds/layout.phtml
r106 r117 82 82 <body> 83 83 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; ?> 89 89 90 <? =$content_for_layout ?>90 <?php echo $content_for_layout ?> 91 91 92 92 </body>
