diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-10-29 00:51:53 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-10-29 00:51:53 +0000 |
commit | 9cfb075df5c8fcd0f83f019dee67fa907dae6265 (patch) | |
tree | d4cbb031a0534715d9caec54c27945e234c7aea1 /lib/init.php | |
parent | 5038eb20d7322af95d1fef7035f6d533b49c25a6 (diff) | |
download | ampache-9cfb075df5c8fcd0f83f019dee67fa907dae6265.tar.gz ampache-9cfb075df5c8fcd0f83f019dee67fa907dae6265.tar.bz2 ampache-9cfb075df5c8fcd0f83f019dee67fa907dae6265.zip |
3.3.1-Alpha1 release
Diffstat (limited to 'lib/init.php')
-rw-r--r-- | lib/init.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/init.php b/lib/init.php index d5c6d560..dc6f79d3 100644 --- a/lib/init.php +++ b/lib/init.php @@ -73,7 +73,7 @@ if (!$results = read_config($configfile,0)) { } /** This is the version.... fluf nothing more... **/ -$results['version'] = '3.3.3-Alpha1 (Build 005)'; +$results['version'] = '3.3.3-Alpha1'; $results['raw_web_path'] = $results['web_path']; $results['web_path'] = $http_type . $_SERVER['HTTP_HOST'] . $results['web_path']; @@ -107,12 +107,14 @@ if (!$_SERVER['SERVER_NAME']) { $_SERVER['SERVER_NAME'] = ''; } if (!isset($results['auth_methods'])) { - $results['auth_methods'] = 'mysql'; + $results['auth_methods'] = array('mysql'); } if (!is_array($results['auth_methods'])) { $results['auth_methods'] = array($results['auth_methods']); } - +if (!$results['user_ip_cardinality']) { + $results['user_ip_cardinality'] = 42; +} /* Variables needed for vauth Module */ |