Форум IP.Board
Аттачи в Мозилле
В версии для 2.0.х был подобный глюк. При нажатии на аттач он открывался криво — были всякие абракадабры.
Решение как это исправить.
Открываем: /sources/misc/attach.php
Заменяем:
@header( "Content-Type: ".$ibforums->cache['attachtypes'][ $attach['attach_ext'] ]['atype_mimetype'].
"\nContent-Disposition: inline; filename=\"".$attach['attach_file']
."\"\nContent-Length: ".(string)(filesize( $file ) ) );
На:
@header( "Content-Type: ".$ibforums->cache['attachtypes'][ $attach['attach_ext'] ]['atype_mimetype'] );
@header( "Content-Disposition: inline; filename=\"".$attach['attach_file']."\"" );
@header( "Content-Length: ".(string)(filesize( $file ) ) );