diff options
author | Marc Alexander <admin@m-a-styles.de> | 2015-12-05 16:07:14 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2016-01-06 13:52:11 +0100 |
commit | 73900d1857a9a59eff82b224537a79110466ce7e (patch) | |
tree | da350891e10a0df0590ec9ada0c41f6458dbd5a7 /phpBB/install/convertors | |
parent | 3b9a9bb04a526c09d7a726fde90805681e581e0f (diff) | |
download | forums-73900d1857a9a59eff82b224537a79110466ce7e.tar forums-73900d1857a9a59eff82b224537a79110466ce7e.tar.gz forums-73900d1857a9a59eff82b224537a79110466ce7e.tar.bz2 forums-73900d1857a9a59eff82b224537a79110466ce7e.tar.xz forums-73900d1857a9a59eff82b224537a79110466ce7e.zip |
[ticket/13454] Remove more unused variables
This should be the last part. Off to checking if the changes were correct.
PHPBB3-13454
Diffstat (limited to 'phpBB/install/convertors')
-rw-r--r-- | phpBB/install/convertors/functions_phpbb20.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/install/convertors/functions_phpbb20.php b/phpBB/install/convertors/functions_phpbb20.php index 0be4346c1e..e8de7ef3e1 100644 --- a/phpBB/install/convertors/functions_phpbb20.php +++ b/phpBB/install/convertors/functions_phpbb20.php @@ -1299,7 +1299,7 @@ function get_bbcode_bitfield() */ function phpbb_post_edit_user() { - global $convert_row, $config; + global $convert_row; if (isset($convert_row['post_edit_count'])) { @@ -1320,7 +1320,7 @@ function phpbb_get_files_dir() return; } - global $src_db, $same_db, $convert, $user, $config, $cache; + global $src_db, $same_db, $convert, $user; if ($convert->mysql_convert && $same_db) { @@ -1359,7 +1359,7 @@ function phpbb_get_files_dir() */ function phpbb_copy_thumbnails() { - global $db, $convert, $user, $config, $cache, $phpbb_root_path; + global $convert, $config, $phpbb_root_path; $src_path = $convert->options['forum_path'] . '/' . phpbb_get_files_dir() . '/thumbs/'; |