aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2014-03-05 18:36:15 -0600
committerNathan Guse <nathaniel.guse@gmail.com>2014-03-05 18:36:15 -0600
commitc1ca74ee6de84282aa8b33966f878b73abb56a34 (patch)
treeb90a2bb167ab4f0a87c50abb9e38d79a6da74d4f /phpBB
parent9d25485b323d782d77a72bd0d36b5c8ad359f6fd (diff)
parent3930978e640d6bfb870329866a079aa19745d7da (diff)
downloadforums-c1ca74ee6de84282aa8b33966f878b73abb56a34.tar
forums-c1ca74ee6de84282aa8b33966f878b73abb56a34.tar.gz
forums-c1ca74ee6de84282aa8b33966f878b73abb56a34.tar.bz2
forums-c1ca74ee6de84282aa8b33966f878b73abb56a34.tar.xz
forums-c1ca74ee6de84282aa8b33966f878b73abb56a34.zip
Merge pull request #2058 from nickvergessen/ticket/12216
[ticket/12216] Undefined index: lang_options when creating date profile field
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/phpbb/profilefields/type/type_date.php1
1 files changed, 1 insertions, 0 deletions
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);