diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-08-14 23:26:35 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-08-14 23:26:35 +0000 |
commit | 40a84aca6f6eaebc3c35656e2ec1aac64a189dc5 (patch) | |
tree | 96347d15b160b84f9c8e54fb99d25ffaa755b056 /modules | |
parent | 876575f63491226db28234519872380a1073d7e2 (diff) | |
download | ampache-40a84aca6f6eaebc3c35656e2ec1aac64a189dc5.tar.gz ampache-40a84aca6f6eaebc3c35656e2ec1aac64a189dc5.tar.bz2 ampache-40a84aca6f6eaebc3c35656e2ec1aac64a189dc5.zip |
whole bunch of last-min fixes for Alpha2 release
Diffstat (limited to 'modules')
-rw-r--r-- | modules/init.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/init.php b/modules/init.php index c733e92c..053aeb92 100644 --- a/modules/init.php +++ b/modules/init.php @@ -83,7 +83,7 @@ if (!$results['conf']['allow_stream_playback']) { } $results['conf']['web_path'] = $http_type . $_SERVER['HTTP_HOST'] . $results['conf']['web_path']; -$results['conf']['version'] = '3.3.2-Alpha2 Build (005)'; +$results['conf']['version'] = '3.3.2-Alpha2'; $results['conf']['catalog_file_pattern']= 'mp3|mpc|m4p|m4a|mp4|aac|ogg|rm|wma|asf|flac|spx'; $results['libglue']['local_table'] = 'session'; $results['libglue']['local_sid'] = 'id'; @@ -257,11 +257,11 @@ if (!conf('use_auth')) { $auth['success'] = 1; $auth['info']['username'] = "Ampache"; $auth['info']['fullname'] = "Ampache User"; - $auth['info']['id'] = 0; + $auth['info']['id'] = -1; $auth['info']['access'] = "admin"; $auth['info']['offset_limit'] = 50; if (!check_session()) { make_local_session_only($auth); } - $user = new User(0); + $user = new User(-1); $user->fullname = $auth['info']['fullname']; $user->offset_limit = $auth['info']['offset_limit']; $user->username = $auth['info']['username']; |