You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On https://github.com/OpenMage/magento-lts/blob/1.9.4.x/lib/Varien/Io/File.php
the method filePutContent log a message like:
"ERR (3): Warning: chdir(): No such file or directory (errno 2)"
due to not using @chdir
public function filePutContent($filename, $src)
{ @chdir($this->_cwd);
$result = @file_put_contents($filename, $src); chdir($this->_iwd);
return $result;
}
Not big thing, but create not necessary logs.
The text was updated successfully, but these errors were encountered:
On https://github.com/OpenMage/magento-lts/blob/1.9.4.x/lib/Varien/Io/File.php
the method filePutContent log a message like:
"ERR (3): Warning: chdir(): No such file or directory (errno 2)"
due to not using @chdir
public function filePutContent($filename, $src)
{
@chdir($this->_cwd);
$result = @file_put_contents($filename, $src);
chdir($this->_iwd);
return $result;
}
Not big thing, but create not necessary logs.
The text was updated successfully, but these errors were encountered: