diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2012-09-06 12:51:46 -0400 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2012-09-06 12:56:20 -0400 |
commit | 25b77a6c756496e0508b92dc58ac015091d1bc41 (patch) | |
tree | ceb95abf5283eec361cc8b9ee908170dfa532b63 /lib/class/vainfo.class.php | |
parent | dabbea660ff0168acae65328c9f6d8edf6de4443 (diff) | |
download | ampache-25b77a6c756496e0508b92dc58ac015091d1bc41.tar.gz ampache-25b77a6c756496e0508b92dc58ac015091d1bc41.tar.bz2 ampache-25b77a6c756496e0508b92dc58ac015091d1bc41.zip |
Partial fix for ASF tags
Actually transfer all ASF tags into the asf tag array. I suspect that
some things like 'genre' may actually be multivalued, but I don't have
any samples to back that up.
Diffstat (limited to 'lib/class/vainfo.class.php')
-rw-r--r-- | lib/class/vainfo.class.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/class/vainfo.class.php b/lib/class/vainfo.class.php index eba3565b..f52545b8 100644 --- a/lib/class/vainfo.class.php +++ b/lib/class/vainfo.class.php @@ -900,6 +900,10 @@ class vainfo { break; } + foreach($tags['tags']['asf'] as $tag => $data) { + $array[$tag] = $this->_clean_tag($data['0']); + } + return $array; } // _parse_wmv |