diff options
author | cflip <36554078+cflip@users.noreply.github.com> | 2021-07-20 12:29:11 -0600 |
---|---|---|
committer | cflip <36554078+cflip@users.noreply.github.com> | 2021-07-20 12:29:11 -0600 |
commit | 3c5828b1a787bffa6e886a4952741e4bcaeb43b9 (patch) | |
tree | 5e40fd78ad3c5301c62207ecfa4bd109a582db69 /viewthread.php | |
parent | f5e972c030675f46cda543e13da1b787457e070b (diff) |
A bit of code cleanup
Diffstat (limited to 'viewthread.php')
-rwxr-xr-x | viewthread.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/viewthread.php b/viewthread.php index 85f1813..06debe8 100755 --- a/viewthread.php +++ b/viewthread.php @@ -50,7 +50,7 @@ include_once 'includes/error.php'; if ($_SERVER['REQUEST_METHOD'] == 'POST') {
if (!Session::get()->is_signed_in()) {
- trigger_error('You must be <a href="signin.php">signed in</a> to reply to this thread.', E_USER_NOTICE);
+ trigger_error('You must be <a href="signin.php">signed in</a> to reply to this thread.');
return;
}
|