From b40273af3c6f01fe71b8580874e143bdce3abb4b Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Thu, 3 Apr 2014 09:57:54 +0100 Subject: [PATCH] Issue #2231171 by Jalandhar: Fix spelling mistake in exception thrown in drupal_rewrite_settings(). --- core/includes/install.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/includes/install.inc b/core/includes/install.inc index 5c9dcf90871fdda..ab818ba05e05fed 100644 --- a/core/includes/install.inc +++ b/core/includes/install.inc @@ -303,7 +303,7 @@ function drupal_rewrite_settings($settings = array(), $settings_file = NULL) { else { // If the expression was $a = 1 + 2; then we replaced 1 and // the + is unexpected. - throw new Exception('Unepxected token after replacing value.'); + throw new Exception('Unexpected token after replacing value.'); } break; }