mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
git-svn-id: file:///svn/phpbb/trunk@7004 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -279,7 +279,7 @@ class install_convert extends module
|
||||
|
||||
while ($entry = readdir($handle))
|
||||
{
|
||||
if (preg_match('/^convert_([a-z0-9_]+).' . $phpEx . '/i', $entry, $m))
|
||||
if (preg_match('/^convert_([a-z0-9_]+).' . $phpEx . '$/i', $entry, $m))
|
||||
{
|
||||
include('./convertors/' . $entry);
|
||||
if (isset($convertor_data))
|
||||
@@ -452,6 +452,7 @@ class install_convert extends module
|
||||
if (!$result)
|
||||
{
|
||||
$prefixes = array();
|
||||
// TODO: fixme
|
||||
if ($result = $src_db->sql_query('SHOW TABLES'))
|
||||
{
|
||||
while ($row = $src_db->sql_fetchrow($result))
|
||||
@@ -991,7 +992,7 @@ class install_convert extends module
|
||||
$config['max_quote_depth'] = 0;
|
||||
|
||||
// @todo Need to confirm that max post length in source is <= max post length in destination or there may be interesting formatting issues
|
||||
$config['max_post_chars'] = -1;
|
||||
$config['max_post_chars'] = -1;
|
||||
}
|
||||
|
||||
$template->assign_block_vars('checks', array(
|
||||
|
Reference in New Issue
Block a user