diff options
| author | Syndamia <kamen@syndamia.com> | 2025-01-26 08:45:02 +0200 |
|---|---|---|
| committer | Syndamia <kamen@syndamia.com> | 2025-01-26 08:45:02 +0200 |
| commit | ff740779b6d09e26416a348a22a7380b13068ac2 (patch) | |
| tree | f4cd3791ad6d5cbb5febe0c8f2c67f0b6093f947 /views/test | |
| parent | f1246e8b009ce3cd3229225bf1d57237cad58ce0 (diff) | |
| download | nowayforward_human-ff740779b6d09e26416a348a22a7380b13068ac2.tar nowayforward_human-ff740779b6d09e26416a348a22a7380b13068ac2.tar.gz nowayforward_human-ff740779b6d09e26416a348a22a7380b13068ac2.zip | |
chore(views): Replace <?php echo with <?=
Diffstat (limited to 'views/test')
| -rw-r--r-- | views/test/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/test/index.php b/views/test/index.php index e5656e1..bce8371 100644 --- a/views/test/index.php +++ b/views/test/index.php @@ -13,8 +13,8 @@ <section class="quickinfo"> <?php print_r($user); ?> </section> - <strong><?php echo $user->Username ?></strong> - <em><?php echo $user->Role ?></em> + <strong><?= $user->Username ?></strong> + <em><?= $user->Role ?></em> </section> <?php endforeach;?> |
