|
@@ 774-776 (lines=3) @@
|
| 771 |
|
$parsedFrame['description'] = $this->RemoveStringTerminator($parsedFrame['description'], $frame_textencoding_terminator); |
| 772 |
|
$parsedFrame['description'] = $this->MakeUTF16emptyStringEmpty($parsedFrame['description']); |
| 773 |
|
|
| 774 |
|
if (!empty($parsedFrame['framenameshort']) && $parsedFrame['url']) { |
| 775 |
|
$info['id3v2']['comments'][$parsedFrame['framenameshort']][] = getid3_lib::iconv_fallback('ISO-8859-1', $info['id3v2']['encoding'], $parsedFrame['url']); |
| 776 |
|
} |
| 777 |
|
unset($parsedFrame['data']); |
| 778 |
|
|
| 779 |
|
|
|
@@ 788-790 (lines=3) @@
|
| 785 |
|
// URL <text string> |
| 786 |
|
|
| 787 |
|
$parsedFrame['url'] = trim($parsedFrame['data']); // always ISO-8859-1 |
| 788 |
|
if (!empty($parsedFrame['framenameshort']) && $parsedFrame['url']) { |
| 789 |
|
$info['id3v2']['comments'][$parsedFrame['framenameshort']][] = getid3_lib::iconv_fallback('ISO-8859-1', $info['id3v2']['encoding'], $parsedFrame['url']); |
| 790 |
|
} |
| 791 |
|
unset($parsedFrame['data']); |
| 792 |
|
|
| 793 |
|
|
|
@@ 1003-1005 (lines=3) @@
|
| 1000 |
|
|
| 1001 |
|
$parsedFrame['language'] = $frame_language; |
| 1002 |
|
$parsedFrame['languagename'] = $this->LanguageLookup($frame_language, false); |
| 1003 |
|
if (!empty($parsedFrame['framenameshort']) && !empty($parsedFrame['data'])) { |
| 1004 |
|
$info['id3v2']['comments'][$parsedFrame['framenameshort']][] = getid3_lib::iconv_fallback($parsedFrame['encoding'], $info['id3v2']['encoding'], $parsedFrame['data']); |
| 1005 |
|
} |
| 1006 |
|
unset($parsedFrame['data']); |
| 1007 |
|
|
| 1008 |
|
|
|
@@ 1705-1707 (lines=3) @@
|
| 1702 |
|
|
| 1703 |
|
$parsedFrame['data'] = (string) substr($parsedFrame['data'], $frame_offset); |
| 1704 |
|
$parsedFrame['data'] = $this->RemoveStringTerminator($parsedFrame['data'], $this->TextEncodingTerminatorLookup($frame_textencoding)); |
| 1705 |
|
if (!empty($parsedFrame['framenameshort']) && !empty($parsedFrame['data'])) { |
| 1706 |
|
$info['id3v2']['comments'][$parsedFrame['framenameshort']][] = getid3_lib::iconv_fallback($parsedFrame['encoding'], $info['id3v2']['encoding'], $parsedFrame['data']); |
| 1707 |
|
} |
| 1708 |
|
unset($parsedFrame['data']); |
| 1709 |
|
|
| 1710 |
|
|