diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-24 02:19:35 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-24 02:19:35 +0000 |
commit | f6ea76097eec3f0b5d39d5e6320242a743f74ac1 (patch) | |
tree | bdd7bf4418bf600df50d3c2125446260afb491a0 /install.php | |
parent | a597432c7698c54c66810442a682183d670f9a4a (diff) | |
download | ampache-f6ea76097eec3f0b5d39d5e6320242a743f74ac1.tar.gz ampache-f6ea76097eec3f0b5d39d5e6320242a743f74ac1.tar.bz2 ampache-f6ea76097eec3f0b5d39d5e6320242a743f74ac1.zip |
slight correction to installer
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/install.php b/install.php index 7ba78652..b5b2d86e 100644 --- a/install.php +++ b/install.php @@ -24,6 +24,7 @@ error_reporting(E_ALL ^ E_NOTICE); require_once 'lib/general.lib.php'; require_once 'lib/class/config.class.php'; +require_once 'lib/class/vauth.class.php'; require_once 'lib/ui.lib.php'; require_once 'lib/log.lib.php'; require_once 'modules/horde/Browser.php'; @@ -31,8 +32,6 @@ require_once 'lib/install.php'; require_once 'lib/debug.lib.php'; require_once 'lib/gettext.php'; -require_once 'modules/vauth/init.php'; - if ($_SERVER['HTTPS'] == 'on') { $http_type = "https://"; } else { $http_type = "http://"; } |