mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
max_quote_depth is set to 0 before too...
git-svn-id: file:///svn/phpbb/trunk@7092 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
4e6d6fd9b6
commit
d5cfa341f3
1 changed files with 4 additions and 2 deletions
|
@ -585,7 +585,8 @@ if (!$get_info)
|
||||||
'autoincrement' => 'post_id',
|
'autoincrement' => 'post_id',
|
||||||
'query_first' => array('target', $convert->truncate_statement . POSTS_TABLE),
|
'query_first' => array('target', $convert->truncate_statement . POSTS_TABLE),
|
||||||
'execute_first' => '
|
'execute_first' => '
|
||||||
$config["max_post_chars"] = 0;
|
$config["max_post_chars"] = -1;
|
||||||
|
$config["max_quote_depth"] = 0;
|
||||||
',
|
',
|
||||||
|
|
||||||
array('post_id', 'posts.post_id', ''),
|
array('post_id', 'posts.post_id', ''),
|
||||||
|
@ -633,7 +634,8 @@ if (!$get_info)
|
||||||
),
|
),
|
||||||
|
|
||||||
'execute_first' => '
|
'execute_first' => '
|
||||||
$config["max_post_chars"] = 0;
|
$config["max_post_chars"] = -1;
|
||||||
|
$config["max_quote_depth"] = 0;
|
||||||
',
|
',
|
||||||
|
|
||||||
array('msg_id', 'privmsgs.privmsgs_id', ''),
|
array('msg_id', 'privmsgs.privmsgs_id', ''),
|
||||||
|
|
Loading…
Add table
Reference in a new issue