From 3930978e640d6bfb870329866a079aa19745d7da Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Mon, 24 Feb 2014 10:00:45 +0100 Subject: [PATCH] [ticket/12216] Undefined index: lang_options when creating date profile field PHPBB3-12216 --- phpBB/phpbb/profilefields/type/type_date.php | 1 + 1 file changed, 1 insertion(+) diff --git a/phpBB/phpbb/profilefields/type/type_date.php b/phpBB/phpbb/profilefields/type/type_date.php index fc012dd97a..af3d65c9b6 100644 --- a/phpBB/phpbb/profilefields/type/type_date.php +++ b/phpBB/phpbb/profilefields/type/type_date.php @@ -66,6 +66,7 @@ class type_date extends type_base 'field_ident' => 'field_default_value', 'field_type' => $this->get_service_name(), 'field_length' => $field_data['field_length'], + 'lang_options' => $field_data['lang_options'], ); $always_now = request_var('always_now', -1);