diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-01-24 11:29:56 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-01-24 11:29:56 +0000 |
commit | 9e5c25504e275d8de071f2efafa349ebee21063c (patch) | |
tree | 86d37c1ed2b20eca9575084be7668d7b32dcf644 /phpBB/install/install_convert.php | |
parent | 180a5a243d03803fef0d32a6aaa2d6899a83dfcc (diff) | |
download | forums-9e5c25504e275d8de071f2efafa349ebee21063c.tar forums-9e5c25504e275d8de071f2efafa349ebee21063c.tar.gz forums-9e5c25504e275d8de071f2efafa349ebee21063c.tar.bz2 forums-9e5c25504e275d8de071f2efafa349ebee21063c.tar.xz forums-9e5c25504e275d8de071f2efafa349ebee21063c.zip |
- added confirm box to ucp zebra (adding fried/foe)
- permission fixes for conversions
- use more appropiate error message within convertor if source tables could not be found
- other tiny fixes
git-svn-id: file:///svn/phpbb/trunk@6925 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/install_convert.php')
-rw-r--r-- | phpBB/install/install_convert.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/install_convert.php b/phpBB/install/install_convert.php index 3ae6b8be1c..83988ff05f 100644 --- a/phpBB/install/install_convert.php +++ b/phpBB/install/install_convert.php @@ -139,7 +139,7 @@ class install_convert extends module // Let's see if there is a conversion in the works... $options = array(); - if (isset($config['convert_progress'])) + if (!empty($config['convert_progress']) && !empty($config['convert_options'])) { $options = unserialize($config['convert_progress']); $options = array_merge($options, unserialize($config['convert_options'])); |