summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorPaul Arthur <flowerysong00@yahoo.com>2011-02-24 14:36:25 -0500
committerPaul Arthur <flowerysong00@yahoo.com>2011-02-24 14:36:25 -0500
commitf5248ba0cce5049f253fb622ebd521d4b61f4026 (patch)
treec54981784f29cb535f9e83b828a1f90b88e664a8 /modules
parentfa505d770830902f7cce9fa2f42f9785273b7abc (diff)
downloadampache-f5248ba0cce5049f253fb622ebd521d4b61f4026.tar.gz
ampache-f5248ba0cce5049f253fb622ebd521d4b61f4026.tar.bz2
ampache-f5248ba0cce5049f253fb622ebd521d4b61f4026.zip
Don't unset the UFID values in id3v2 tags.
These are used for retrieving the MusicBrainz track IDs.
Diffstat (limited to 'modules')
-rw-r--r--modules/getid3/module.tag.id3v2.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/getid3/module.tag.id3v2.php b/modules/getid3/module.tag.id3v2.php
index cb80197a..4828f0b8 100644
--- a/modules/getid3/module.tag.id3v2.php
+++ b/modules/getid3/module.tag.id3v2.php
@@ -562,7 +562,6 @@ class getid3_id3v2 extends getid3_handler
$frame_id_string = substr($parsed_frame['data'], 0, $frame_terminator_pos);
$parsed_frame['ownerid'] = $frame_id_string;
$parsed_frame['data'] = substr($parsed_frame['data'], $frame_terminator_pos + strlen("\x00"));
- unset($parsed_frame['data']);
return true;
}
@@ -3281,4 +3280,4 @@ class getid3_id3v2 extends getid3_handler
}
-?> \ No newline at end of file
+?>