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:
authorThomas Steur <thomas.steur@googlemail.com>2014-09-05 15:50:29 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-09-05 15:50:29 +0400
commitc33d0394cf723599d63f9eddbb727c3e57cc5a84 (patch)
treee641069aeb4dbd8f15700ffaad81149126dd22fe /misc/internal-docs/content-tracking.md
parent96ed663d643b55b2f6fa86777d58e25e53eb3fce (diff)
refs #4996 and even more tests and more bugfixes
Diffstat (limited to 'misc/internal-docs/content-tracking.md')
-rw-r--r--misc/internal-docs/content-tracking.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/internal-docs/content-tracking.md b/misc/internal-docs/content-tracking.md
index a61fbe98f8..e81d870eed 100644
--- a/misc/internal-docs/content-tracking.md
+++ b/misc/internal-docs/content-tracking.md
@@ -153,7 +153,7 @@ If content piece contains a domain that is the same as the current website's dom
In case there is no content name, no content piece and no title set anywhere it will default to "Unknown". To get a useful content name you should set either the `data-content-name` or a `title` attribute.
```
-<a href="http://www.example.com" data-track-content title="Block Title"><span title="Inner Title" data-content-piece>Lorem ipsum dolor sit amet...</p></a>
+<a href="http://www.example.com" data-track-content title="Block Title"><span title="Inner Title" data-content-piece>Lorem ipsum dolor sit amet...</span></a>
// content name = Block Title
// content piece = Unknown
// content target = http://www.example.com
@@ -279,7 +279,7 @@ We would replace the `href=/anylink` with a link to piwik.php of your Piwik inst
<a href="http://ad.example.com" data-track-content>
<img src="http://www.example.com/path/xyz.jpg" data-content-piece />
</a>
-// content name = xyz.jpg
+// content name = /path/xyz.jpg
// content piece = http://www.example.com/path/xyz.jpg
// content target = http://ad.example.com
```