diff --git a/core/includes/install.core.inc b/core/includes/install.core.inc index b0df859c3aa64b3f296224b58d1730c044f8f535..c21cd68bccf789075f309d05be3502cbcfbd5b0f 100644 --- a/core/includes/install.core.inc +++ b/core/includes/install.core.inc @@ -213,11 +213,6 @@ function install_begin_request(&$install_state) { // Add any installation parameters passed in via the URL. $install_state['parameters'] += $_GET; - // @todo: remove this testbot compatibility layer once the testbot is fixed. - if (isset($_GET['locale'])) { - $install_state['parameters']['langcode'] = $_GET['locale']; - } - // Validate certain core settings that are used throughout the installation. if (!empty($install_state['parameters']['profile'])) { $install_state['parameters']['profile'] = preg_replace('/[^a-zA-Z_0-9]/', '', $install_state['parameters']['profile']);