diff options
author | Marc Alexander <admin@m-a-styles.de> | 2016-11-16 21:53:27 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2016-11-16 21:53:27 +0100 |
commit | 1ff01d722a4ad9dbad301595c7632033d6063273 (patch) | |
tree | bada1beaf5314d87d1ad77b5385ecee7c553f3ea | |
parent | 8323de331e6ae979f92077eb5f9c30f9145acbc4 (diff) | |
parent | f8fb3e0f9fe6b19d9363781d840d53ad8978b3be (diff) | |
download | forums-1ff01d722a4ad9dbad301595c7632033d6063273.tar forums-1ff01d722a4ad9dbad301595c7632033d6063273.tar.gz forums-1ff01d722a4ad9dbad301595c7632033d6063273.tar.bz2 forums-1ff01d722a4ad9dbad301595c7632033d6063273.tar.xz forums-1ff01d722a4ad9dbad301595c7632033d6063273.zip |
Merge pull request #4510 from senky/ticket/14864
[ticket/14864] Set maxlength=64 to dateformat in ACP
-rw-r--r-- | phpBB/includes/acp/acp_board.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_board.php b/phpBB/includes/acp/acp_board.php index e004d2e81f..c8f6f426c6 100644 --- a/phpBB/includes/acp/acp_board.php +++ b/phpBB/includes/acp/acp_board.php @@ -1017,7 +1017,7 @@ class acp_board $user->timezone = $old_tz; return "<select name=\"dateoptions\" id=\"dateoptions\" onchange=\"if (this.value == 'custom') { document.getElementById('" . addslashes($key) . "').value = '" . addslashes($value) . "'; } else { document.getElementById('" . addslashes($key) . "').value = this.value; }\">$dateformat_options</select> - <input type=\"text\" name=\"config[$key]\" id=\"$key\" value=\"$value\" maxlength=\"30\" />"; + <input type=\"text\" name=\"config[$key]\" id=\"$key\" value=\"$value\" maxlength=\"64\" />"; } /** |