1234567891011121314151617181920212223242526272829303132 |
- <?php
- class getid3_par2
- {
- function getid3_par2(&$fd, &$ThisFileInfo) {
- $ThisFileInfo['fileformat'] = 'par2';
- $ThisFileInfo['error'][] = 'PAR2 parsing not enabled in this version of getID3()';
- return false;
- }
- }
- ?>
|