aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/develop
diff options
context:
space:
mode:
authorErik Frèrejean <erikfrerejean@phpbb.com>2011-01-11 13:48:13 +0100
committerOleg Pudeyev <oleg@bsdpower.com>2011-02-23 21:15:40 -0500
commita7bc76d24622ce89f35023738e459ce38aa169a5 (patch)
tree2918c3ce9316365b8ff1b70fdeb2a42368f686a3 /phpBB/develop
parent510248da2844df22af1cd807e13b46c0c8b68290 (diff)
downloadforums-a7bc76d24622ce89f35023738e459ce38aa169a5.tar
forums-a7bc76d24622ce89f35023738e459ce38aa169a5.tar.gz
forums-a7bc76d24622ce89f35023738e459ce38aa169a5.tar.bz2
forums-a7bc76d24622ce89f35023738e459ce38aa169a5.tar.xz
forums-a7bc76d24622ce89f35023738e459ce38aa169a5.zip
[ticket/7778] BBCode single limit
There are currently two hard limits for the number of BBCodes allowed. One is enforced by the type of the `bbcode_id` column, the other by an hard limit in `acp/acp_bbcode.php`. However this limit can never be reached due to the size of the database column. Suggested fix involves adding a new constant to define the max. number of BBCodes (as with smilies) and chaning the database column from a tinyint to a smallint to actually allow 1511 BBCodes PHPBB3-7778
Diffstat (limited to 'phpBB/develop')
-rw-r--r--phpBB/develop/create_schema_files.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/develop/create_schema_files.php b/phpBB/develop/create_schema_files.php
index 0515d801f2..87670722aa 100644
--- a/phpBB/develop/create_schema_files.php
+++ b/phpBB/develop/create_schema_files.php
@@ -926,7 +926,7 @@ function get_schema_struct()
$schema_data['phpbb_bbcodes'] = array(
'COLUMNS' => array(
- 'bbcode_id' => array('TINT:3', 0),
+ 'bbcode_id' => array('USINT', 0),
'bbcode_tag' => array('VCHAR:16', ''),
'bbcode_helpline' => array('VCHAR_UNI', ''),
'display_on_posting' => array('BOOL', 0),