diff options
author | cflip <36554078+cflip@users.noreply.github.com> | 2021-04-25 17:43:37 -0600 |
---|---|---|
committer | cflip <36554078+cflip@users.noreply.github.com> | 2021-04-25 17:43:37 -0600 |
commit | 2d5cf9448edb1eb6785c1532ccb031b0ba0d1ef0 (patch) | |
tree | 2bf099704c5665f66c0bd2a18b7c4599ec397ffa /includes/templates | |
parent | 08561be92bbfafe149b758634f3df4d00ee310de (diff) |
Remove old signout_inc.php file
Diffstat (limited to 'includes/templates')
-rw-r--r-- | includes/templates/header.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/templates/header.php b/includes/templates/header.php index 35d9848..1db9cda 100644 --- a/includes/templates/header.php +++ b/includes/templates/header.php @@ -10,7 +10,7 @@ if (Session::get()->is_signed_in()) { $user = Session::get()->get_current_user(); - echo '[<a href="viewuser.php?id=' . $user->id . '">' . $user->name . '\'s Profile</a>] [<a href="includes/signout_inc.php">Log out</a>]'; + echo '[<a href="viewuser.php?id=' . $user->id . '">' . $user->name . '\'s Profile</a>] [<a href="signout.php">Log out</a>]'; } else { echo '[<a href="signin.php">Sign in</a>] or [<a href="register.php">Register an account</a>]'; } |