Removing short open tags and replacing with print statements.

This commit is contained in:
Dan Cryer 2013-05-14 18:28:03 +01:00
commit fa7ad2f45d
9 changed files with 38 additions and 39 deletions

View file

@ -1,5 +1,5 @@
<div id="title">
<h1><?= $type == 'add' ? 'Add User' : 'Edit ' . $user->getName() ?></h1>
<h1><?php print $type == 'add' ? 'Add User' : 'Edit ' . $user->getName() ?></h1>
</div>
<div class="row">
@ -13,6 +13,6 @@
</div>
</div>
<div class="span8">
<?= $form; ?>
<?php print $form; ?>
</div>
</div>