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>2009-03-30 06:22:03 +0400
committermattpiwik <matthieu.aubry@gmail.com>2009-03-30 06:22:03 +0400
commite0507d715f281f56e10d0b87dc4e013f3aba96c1 (patch)
tree6c7740e8e5dffaa4006b9208324a1952bac49469 /plugins/ExampleAPI
parent13158516543fd79913f4a5e1a393dc3d5bc1ab31 (diff)
- fixing recently introduced sorting issue, refactoring, cleaning up the generic filters concept by removing the automatic sorting of data
- fixing issue when executing unit tests would invalidate tmp/cache/tracker files - fixed edge case issue when calling several apis from one http request, and requesting recursive output, it was failing in some random cases - adding a unit test that calls all callable api methods and check for non empty output - git-svn-id: http://dev.piwik.org/svn/trunk@1041 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'plugins/ExampleAPI')
-rw-r--r--plugins/ExampleAPI/API.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/ExampleAPI/API.php b/plugins/ExampleAPI/API.php
index e15c86925f..f9365b3ecc 100644
--- a/plugins/ExampleAPI/API.php
+++ b/plugins/ExampleAPI/API.php
@@ -36,6 +36,7 @@ class Piwik_ExampleAPI_API
public function getPiwikVersion()
{
Piwik::checkUserHasSomeViewAccess();
+ require_once "Version.php";
return Piwik_Version::VERSION;
}