diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-09-19 07:41:02 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-09-19 07:41:02 +0000 |
commit | 88c75b8772ce0d5bdf4bf430bcfc6010dd440ac2 (patch) | |
tree | a56c429428b007803ea8137a2dc144f2aef1603f | |
parent | 9ca3de35c63bff074b1af90c695b09bf345c6434 (diff) | |
download | brdo-88c75b8772ce0d5bdf4bf430bcfc6010dd440ac2.tar.gz brdo-88c75b8772ce0d5bdf4bf430bcfc6010dd440ac2.tar.bz2 |
- Patch #308713 by fletchgqc: incorrect max length of language domain string in locale form.
-rw-r--r-- | includes/locale.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/locale.inc b/includes/locale.inc index fbe8f6e0b..483497a6f 100644 --- a/includes/locale.inc +++ b/includes/locale.inc @@ -270,7 +270,7 @@ function _locale_languages_common_controls(&$form, $language = NULL) { ); $form['domain'] = array('#type' => 'textfield', '#title' => t('Language domain'), - '#maxlength' => 64, + '#maxlength' => 128, '#default_value' => @$language->domain, '#description' => t('Language-specific URL, with protocol. With language negotiation set to <em>Domain name only</em>, the site is presented in this language when the URL accessing the site references this domain. For the default language, this value may be left blank. <strong>This value must include a protocol as part of the string.</strong> <em>Example: Specifying "http://example.de" or "http://de.example.com" as language domains for German results in URLs in the forms "http://example.de/node" and "http://de.example.com/node", respectively.</em>'), ); |