summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
Diffstat (limited to 'includes')
-rw-r--r--includes/session.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/session.php b/includes/session.php
index c9dd594999..992ce8ac98 100644
--- a/includes/session.php
+++ b/includes/session.php
@@ -122,7 +122,7 @@ define('WT_SCRIPT_NAME', basename(Filter::server('SCRIPT_NAME')));
// Convert PHP warnings/notices into exceptions
set_error_handler(function ($errno, $errstr, $errfile, $errline) {
- // Ignore errors thar are silenced with '@'
+ // Ignore errors that are silenced with '@'
if (error_reporting() & $errno) {
throw new ErrorException($errfile . ':' . $errline . ' ' . $errstr, $errno);
}