I have done a very easy workaround that doesn´t effect using iTunes but show id3 inf with WinAmp
add this row to Class file2, function investigate
- Code: Select all
$this->id3inf = '('.$this->origrow['track'].') '.$this->origrow['artist'].' - '.$this->origrow['title'].' - '.$this->origrow['album'];
this will show (track) - artist - title - album (if u want u can skip track and album, standard look in WinAmp)
in function Kplay_senduser2 replace
- Code: Select all
header('Content-Disposition: filename='.$f2->fname);
with
- Code: Select all
header('Content-Disposition: filename='.$f2->id3inf);
Comments?
