roma_ch , попробуйте в файле fm.class.php найти строки
CODE: function _FcloseAll() {
foreach ($this->_FilePointers as $fp) {
fclose($fp);
}
$this->_FilePointers = array();
}
и заменить их на CODE: function _FcloseAll() {
if (count($this->_FilePointers) > 0) {
foreach ($this->_FilePointers as $fp) {
fclose($fp);
}
};
$this->_FilePointers = array();
}
|