Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattpiwik <matthieu.aubry@gmail.com>2007-07-30 21:37:46 +0400
committermattpiwik <matthieu.aubry@gmail.com>2007-07-30 21:37:46 +0400
commit982e44217fc228337a799a7e6da828779db114fc (patch)
tree1e1929fa7c09dee753344cb61245c4f964e763e1 /libs/Zend/Log/Writer
parente5af952a229d7b54a2c395a2c0cd5249ee3fc527 (diff)
- logging system DONE
- fixed bug Access - input filtering functions git-svn-id: http://dev.piwik.org/svn/trunk@22 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'libs/Zend/Log/Writer')
-rwxr-xr-xlibs/Zend/Log/Writer/Stream.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/Zend/Log/Writer/Stream.php b/libs/Zend/Log/Writer/Stream.php
index f4f0f2f7f0..206a1251ab 100755
--- a/libs/Zend/Log/Writer/Stream.php
+++ b/libs/Zend/Log/Writer/Stream.php
@@ -92,7 +92,7 @@ class Zend_Log_Writer_Stream extends Zend_Log_Writer_Abstract
{
$line = $this->_formatter->format($event);
- if ( fwrite($this->_stream, $line) === false) {
+ if (! @fwrite($this->_stream, $line)) {
throw new Zend_Log_Exception("Unable to write to stream");
}
}