Removing short open tags and replacing with print statements.
This commit is contained in:
parent
9ea3a22864
commit
fa7ad2f45d
9 changed files with 38 additions and 39 deletions
|
|
@ -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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue