diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-02-25 19:31:02 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-02-25 19:31:02 -0800 |
commit | 3cec6fec210ce9b7a5528e3c6a8d85e213a0883d (patch) | |
tree | 9b9854315648f36da701a19a5a69e93a1e97600f /FS | |
parent | 15bbf95b1799b5429d486a6882a365bbf20eead8 (diff) |
fix locale conf setting dropdown (RT#21054)
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/Conf.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm index 93aa84b7a..809333c65 100644 --- a/FS/FS/Conf.pm +++ b/FS/FS/Conf.pm @@ -2062,7 +2062,7 @@ and customer address. Include units.', 'key' => 'locale', 'section' => 'UI', 'description' => 'Default locale', - 'type' => 'select', + 'type' => 'select-sub', 'options_sub' => sub { map { $_ => FS::Locales->description($_) } FS::Locales->locales; }, |