diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2007-10-11 08:12:41 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-10-11 08:12:41 +0000 |
| commit | 10ed58b2c9db5869c7e4136b0e718d1f81706d87 (patch) | |
| tree | 5d7e1304c1e58af7c06f98bf33bbb63b4762830a /phpBB/install/convertors | |
| parent | 8f8cc501929170334efe2c385dbc18758b429f62 (diff) | |
| download | forums-10ed58b2c9db5869c7e4136b0e718d1f81706d87.tar forums-10ed58b2c9db5869c7e4136b0e718d1f81706d87.tar.gz forums-10ed58b2c9db5869c7e4136b0e718d1f81706d87.tar.bz2 forums-10ed58b2c9db5869c7e4136b0e718d1f81706d87.tar.xz forums-10ed58b2c9db5869c7e4136b0e718d1f81706d87.zip | |
prevent posting empty messages with some UTF8-characters as well as fixing conversion in CVS.
git-svn-id: file:///svn/phpbb/trunk@8163 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/convertors')
| -rw-r--r-- | phpBB/install/convertors/convert_phpbb20.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install/convertors/convert_phpbb20.php b/phpBB/install/convertors/convert_phpbb20.php index 406fc5068a..11b271f964 100644 --- a/phpBB/install/convertors/convert_phpbb20.php +++ b/phpBB/install/convertors/convert_phpbb20.php @@ -596,7 +596,7 @@ if (!$get_info) 'autoincrement' => 'post_id', 'query_first' => array('target', $convert->truncate_statement . POSTS_TABLE), 'execute_first' => ' - $config["max_post_chars"] = -1; + $config["max_post_chars"] = 0; $config["max_quote_depth"] = 0; ', @@ -645,7 +645,7 @@ if (!$get_info) ), 'execute_first' => ' - $config["max_post_chars"] = -1; + $config["max_post_chars"] = 0; $config["max_quote_depth"] = 0; ', |
