diff options
-rwxr-xr-x | docs/CHANGELOG | 3 | ||||
-rw-r--r-- | lib/class/vainfo.class.php | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/docs/CHANGELOG b/docs/CHANGELOG index 53143d94..3cf94fcc 100755 --- a/docs/CHANGELOG +++ b/docs/CHANGELOG @@ -3,6 +3,9 @@ -------------------------------------------------------------------------- -------------------------------------------------------------------------- + v.3.6-future + - Fixed ASF tag parsing regression (reported by cygn) + v.3.6-Alpha2 2012-08-15 - Fixed CLI database load to work regardless of whether it's run from the top-level directory (reported by porthose) 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 |