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:
authorrobocoder <anthon.pang@gmail.com>2010-03-21 20:42:23 +0300
committerrobocoder <anthon.pang@gmail.com>2010-03-21 20:42:23 +0300
commit2ae37ee86115079a3188b27eb6117b673cc58aa8 (patch)
treea2f6d48e190ad09beae142c7b456de8e41befb37 /core/Cookie.php
parent0f601517e301e16a29d2863a94d1d42b7d9eb9ac (diff)
clean-up XHTML self-closing tags in preparation for validation; note: I skipped plugins/Live as there's a large patch to merge
git-svn-id: http://dev.piwik.org/svn/trunk@1968 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'core/Cookie.php')
-rw-r--r--core/Cookie.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/Cookie.php b/core/Cookie.php
index 26eee20f34..215f985450 100644
--- a/core/Cookie.php
+++ b/core/Cookie.php
@@ -241,12 +241,12 @@ class Piwik_Cookie
*/
public function __toString()
{
- $str = "<-- Content of the cookie '{$this->name}' <br>\n";
+ $str = "&lt;-- Content of the cookie '{$this->name}' <br />\n";
foreach($this->value as $name => $value )
{
- $str .= $name . " = " . var_export($this->get($name), true) . "<br>\n";
+ $str .= $name . " = " . var_export($this->get($name), true) . "<br />\n";
}
- $str .= "--> <br>\n";
+ $str .= "--&gt; <br />\n";
return $str;
}