1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-06 11:59:56 +02:00

sync from 3.5.x branch

This commit is contained in:
Karl 'vollmerk' Vollmer 2009-08-23 14:20:02 +00:00
parent 28fcb8f8ac
commit 1b35ffb126
2 changed files with 5 additions and 3 deletions

View file

@ -4,6 +4,8 @@
--------------------------------------------------------------------------
v.3.6-Alpha1
- Fix issue where file tag pattern was ignore if files have no tag
structur
- Add TDRC to list of parsed id3v2 tags
- Added the rating to a single song view
- Fix caching issue when updating ratings where they would not

View file

@ -409,6 +409,9 @@ class vainfo {
$results = array();
/* Gather Tag information from the filenames */
$results['file'] = $this->_parse_filename($this->filename);
/* Return false if we don't have
* any tags to look at
*/
@ -476,9 +479,6 @@ class vainfo {
} // end foreach
/* Gather Tag information from the filenames */
$results['file'] = $this->_parse_filename($this->filename);
return $results;
} // _get_tags