diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-01-22 08:39:24 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-01-22 08:39:24 +0000 |
commit | 56ce11f771d173f559f2608c83422a94fcc37165 (patch) | |
tree | d537804a9c707cf7fb1743fb8d112bb87040f718 /config | |
parent | 595b211d5e59e320586d09e16878b24bdb8b3375 (diff) | |
download | ampache-56ce11f771d173f559f2608c83422a94fcc37165.tar.gz ampache-56ce11f771d173f559f2608c83422a94fcc37165.tar.bz2 ampache-56ce11f771d173f559f2608c83422a94fcc37165.zip |
added config version check, fixed play selected bug reported by chenb and fixed wmp11 now playing issue
Diffstat (limited to 'config')
-rw-r--r-- | config/ampache.cfg.php.dist | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/config/ampache.cfg.php.dist b/config/ampache.cfg.php.dist index 12cf5c5b..e02b99ba 100644 --- a/config/ampache.cfg.php.dist +++ b/config/ampache.cfg.php.dist @@ -3,6 +3,12 @@ # General Config # #################### +# This value is used to detect quickly +# if this config file is up to date +# this is compared against a value hardcoded +# into the init script +config_version = 1 + #################### # Path Vars # #################### @@ -198,7 +204,8 @@ ratings = "true" # ampache to search if you want to disable one of the search # method simply comment it out valid values are # POSSIBLE VALUES: id3 folder amazon -# DEFAULT: id3,folder,amazon +# DEFAULT: db,id3,folder,amazon +album_art_order = "db" album_art_order = "id3" album_art_order = "folder" album_art_order = "amazon" |