diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-07-12 07:08:21 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-07-12 07:08:21 +0000 |
commit | f27d0c466e54e95aa1400e0435b78a8f7465256f (patch) | |
tree | 9e71b45fb9089a9b18d007cd0ed1ace40de46f73 /phpBB/install | |
parent | 49cc38ebba21dc8b26240a87a23f1d422dd74472 (diff) | |
download | forums-f27d0c466e54e95aa1400e0435b78a8f7465256f.tar forums-f27d0c466e54e95aa1400e0435b78a8f7465256f.tar.gz forums-f27d0c466e54e95aa1400e0435b78a8f7465256f.tar.bz2 forums-f27d0c466e54e95aa1400e0435b78a8f7465256f.tar.xz forums-f27d0c466e54e95aa1400e0435b78a8f7465256f.zip |
basically what is listed within the changelog. ;)
git-svn-id: file:///svn/phpbb/trunk@7872 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install')
-rw-r--r-- | phpBB/install/install_update.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/install/install_update.php b/phpBB/install/install_update.php index 9bf475abfa..7c8e965b83 100644 --- a/phpBB/install/install_update.php +++ b/phpBB/install/install_update.php @@ -643,6 +643,11 @@ class install_update extends module { $this->page_title = 'SELECT_FTP_SETTINGS'; + if (!class_exists($method)) + { + trigger_error('Method does not exist.', E_USER_ERROR); + } + $requested_data = call_user_func(array($method, 'data')); foreach ($requested_data as $data => $default) { |