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>2011-01-14 03:04:08 +0300
committermattpiwik <matthieu.aubry@gmail.com>2011-01-14 03:04:08 +0300
commitecedd2c7fda81cca177bdf774ebd92b7c0e1326e (patch)
tree41426ae6a4ff106e35645dd4fa977466178df48c /core/Cookie.php
parent3156f9ec247b3ac792997cc9ccfad955b8762e4a (diff)
Fixes #2007
* stores idvisitor, config_id as BIGINT rather than char(32) * updates Tracking and Archiving code git-svn-id: http://dev.piwik.org/svn/trunk@3729 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'core/Cookie.php')
-rw-r--r--core/Cookie.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Cookie.php b/core/Cookie.php
index f080bd1fa2..ce59c74855 100644
--- a/core/Cookie.php
+++ b/core/Cookie.php
@@ -368,7 +368,7 @@ class Piwik_Cookie
*/
public function __toString()
{
- $str = 'COOKIE '.$this->name.', rows count: '.count($this->value). ', cookie size = '.strlen($this->generateContentString()).' bytes<br/>';
+ $str = 'COOKIE '.$this->name.', rows count: '.count($this->value). ', cookie size = '.strlen($this->generateContentString())." bytes\n";
$str .= var_export($this->value, $return = true);
return $str;
}