Changeset 95 for trunk/trax/vendor/trax/templates
- Timestamp:
- 12/14/05 01:19:37 (6 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/trax/vendor/trax/templates/scaffolds/layout.phtml
r72 r95 62 62 <body> 63 63 64 <? if( $_SESSION['flash']['notice']): ?>65 <p style="color: green"><?= $_SESSION['flash']['notice']?></p>66 <? elseif( $_SESSION['flash']['error']): ?>67 <p style="color: red"><?= $_SESSION['flash']['error']?></p>64 <? if(Session::isset_flash("notice")): ?> 65 <p style="color: green"><?= Session::flash("notice") ?></p> 66 <? elseif(Session::isset_flash("error")): ?> 67 <p style="color: red"><?= Session::flash("error") ?></p> 68 68 <? endif; ?> 69 69
