diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-08-16 15:37:31 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-08-16 15:37:31 +0000 |
commit | ce094e4d95762791de7fa32b0a83ab0da7254d70 (patch) | |
tree | de1bade5cf1d376d0ad12b0578a197700bbbfa62 /lib/general.lib.php | |
parent | aeeb56a33bc863e3aea6f7e9fc96495492cbb2b6 (diff) | |
download | ampache-ce094e4d95762791de7fa32b0a83ab0da7254d70.tar.gz ampache-ce094e4d95762791de7fa32b0a83ab0da7254d70.tar.bz2 ampache-ce094e4d95762791de7fa32b0a83ab0da7254d70.zip |
first step towards multi-disk support, Thx Hugo Haas
Diffstat (limited to 'lib/general.lib.php')
-rw-r--r-- | lib/general.lib.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/general.lib.php b/lib/general.lib.php index 408a4a99..8a1f2eea 100644 --- a/lib/general.lib.php +++ b/lib/general.lib.php @@ -233,6 +233,7 @@ function clean_tag_info($results,$key,$filename) { $info['title'] = stripslashes(trim($results[$key]['title'])); $info['year'] = intval($results[$key]['year']); $info['track'] = intval($results[$key]['track']); + $info['pos'] = intval($results[$key]['pos']); $info['comment'] = Dba::escape(str_replace($clean_array,$wipe_array,$results[$key]['comment'])); /* This are pulled from the info array */ |