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
path: root/libs/Zend
diff options
context:
space:
mode:
authorMatthieu Napoli <matthieu@mnapoli.fr>2015-01-13 05:47:50 +0300
committerMatthieu Napoli <matthieu@mnapoli.fr>2015-01-13 05:47:50 +0300
commitf57171e8d638e859a28966ce1678ffb9934100c8 (patch)
tree5bb35469391abfe0ab03787557ebbe29426b3aa2 /libs/Zend
parent67e0bd980ad8517dd0b47d4307e1ce3e39e90413 (diff)
Fix #6980 "Array to string conversion" notice
Diffstat (limited to 'libs/Zend')
-rw-r--r--libs/Zend/Session/Exception.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/Zend/Session/Exception.php b/libs/Zend/Session/Exception.php
index 3269e12ce9..7152792aab 100644
--- a/libs/Zend/Session/Exception.php
+++ b/libs/Zend/Session/Exception.php
@@ -55,7 +55,7 @@ class Zend_Session_Exception extends Zend_Exception
*/
static public function handleSessionStartError($errno, $errstr, $errfile, $errline, $errcontext)
{
- self::$sessionStartError = $errfile . '(Line:' . $errline . '): Error #' . $errno . ' ' . $errstr . ' ' . $errcontext;
+ self::$sessionStartError = $errfile . '(Line:' . $errline . '): Error #' . $errno . ' ' . $errstr;
}
/**
@@ -68,7 +68,7 @@ class Zend_Session_Exception extends Zend_Exception
*/
static public function handleSilentWriteClose($errno, $errstr, $errfile, $errline, $errcontext)
{
- self::$sessionStartError .= PHP_EOL . $errfile . '(Line:' . $errline . '): Error #' . $errno . ' ' . $errstr . ' ' . $errcontext;
+ self::$sessionStartError .= PHP_EOL . $errfile . '(Line:' . $errline . '): Error #' . $errno . ' ' . $errstr;
}
}