diff options
author | cflip <36554078+cflip@users.noreply.github.com> | 2021-04-07 16:25:26 -0600 |
---|---|---|
committer | cflip <36554078+cflip@users.noreply.github.com> | 2021-04-07 16:25:26 -0600 |
commit | aa0be9c9de3e30f6db45b00aa601853cac51300f (patch) | |
tree | af3ff6ff23d9d605d671a8670bea70d2f2d538dc /viewuser.php | |
parent | 3b0349188c83b24cb8ff7dfe76796dabc3916e83 (diff) |
Use short echo tags
Diffstat (limited to 'viewuser.php')
-rw-r--r-- | viewuser.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/viewuser.php b/viewuser.php index c43a700..3a33de0 100644 --- a/viewuser.php +++ b/viewuser.php @@ -14,12 +14,12 @@ if (!isset($_GET['id'])) { <!DOCTYPE html> <html> <head> - <title><?php echo $current->name; ?>'s Profile - cflip.net forum</title> + <title><?= $current->name; ?>'s Profile - cflip.net forum</title> <link rel="stylesheet" href="styles/style.css"> </head> <body> <?php include_once "templates/header.php" ?> - <h1><?php echo $current->name; ?></h1> - member since <?php echo date('M d, Y', strtotime($current->date)); ?> + <h1><?= $current->name; ?></h1> + member since <?= date('M d, Y', strtotime($current->date)); ?> </body> </html> |