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>2012-12-15 01:36:03 +0400
committermattpiwik <matthieu.aubry@gmail.com>2012-12-15 01:36:03 +0400
commit32691f9efc489752f4fc56062cba92781cef13ea (patch)
tree72d1e19e5e9986da7219b135ac78562a6179d0d4 /core/API/DocumentationGenerator.php
parent053e3cf8a17340e612cae913d60519a79b345b23 (diff)
Refs #3213 fixing detection (thanks tests!) & adding tests
git-svn-id: http://dev.piwik.org/svn/trunk@7616 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'core/API/DocumentationGenerator.php')
-rw-r--r--core/API/DocumentationGenerator.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/API/DocumentationGenerator.php b/core/API/DocumentationGenerator.php
index a788998f0d..9cbb746b25 100644
--- a/core/API/DocumentationGenerator.php
+++ b/core/API/DocumentationGenerator.php
@@ -66,7 +66,7 @@ class Piwik_API_DocumentationGenerator
continue;
}
$toc .= "<a href='#$moduleName'>$moduleName</a><br/>";
- $str .= "\n<h2 name='$moduleName' id='$moduleName'>Module ".$moduleName."</h2>";
+ $str .= "\n<a name='$moduleName' id='$moduleName'></a><h2>Module ".$moduleName."</h2>";
$str .= "<div class='apiDescription'> ".$info['__documentation'] . " </div>";
foreach($info as $methodName => $infoMethod)
{