From 985f440f62b455796314c142ccfc8ad0797f5e22 Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Sat, 14 Mar 2020 18:24:47 +0100 Subject: [PATCH] Fix typo in error message --- inc/ActionRouter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/ActionRouter.php b/inc/ActionRouter.php index dfcce3aff..7d8a72acf 100644 --- a/inc/ActionRouter.php +++ b/inc/ActionRouter.php @@ -156,7 +156,7 @@ class ActionRouter { if(defined('DOKU_UNITTEST')) { throw $e; } - $msg = 'Something unforseen has happened: ' . $e->getMessage(); + $msg = 'Something unforeseen has happened: ' . $e->getMessage(); nice_die(hsc($msg)); }