From d5cfa341f3ee1fb70b8a702c5ca84702293ce78f Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Tue, 27 Feb 2007 15:42:48 +0000 Subject: [PATCH] max_quote_depth is set to 0 before too... git-svn-id: file:///svn/phpbb/trunk@7092 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/install/convertors/convert_phpbb20.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/phpBB/install/convertors/convert_phpbb20.php b/phpBB/install/convertors/convert_phpbb20.php index 1cd03d3667..1469b7ba1a 100644 --- a/phpBB/install/convertors/convert_phpbb20.php +++ b/phpBB/install/convertors/convert_phpbb20.php @@ -585,7 +585,8 @@ if (!$get_info) 'autoincrement' => 'post_id', 'query_first' => array('target', $convert->truncate_statement . POSTS_TABLE), 'execute_first' => ' - $config["max_post_chars"] = 0; + $config["max_post_chars"] = -1; + $config["max_quote_depth"] = 0; ', array('post_id', 'posts.post_id', ''), @@ -633,7 +634,8 @@ if (!$get_info) ), 'execute_first' => ' - $config["max_post_chars"] = 0; + $config["max_post_chars"] = -1; + $config["max_quote_depth"] = 0; ', array('msg_id', 'privmsgs.privmsgs_id', ''),