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>2009-09-18 03:29:27 +0400
committerrobocoder <anthon.pang@gmail.com>2009-09-18 03:29:27 +0400
commit0494a63c73790b3d62788e3f5f6eefca468ea22b (patch)
tree471116a26dd71c2a0208dddb94e6fc2931f73318 /piwik.php
parentfd16c9ce87e010d1e5652c362e23ae05b41fd854 (diff)
fixes #904 - MySQL error codes; unsupported adapters can map these to driver-specific SQLSTATE (see example)
fixes #980 - Piwik Installation support for "MySQL Improved" (mysqli) extension fixes #984 - Set client connection charset to utf8. Fixed tracker profiling data not recorded until after report generated. More refactoring and database abstraction: - Installation gets a list of adapters instead of hardcoding in the plugin - checking for database-specific system requirements deferred to the adapter - error detection moved to adapter but we still use MySQL error codes rather than defining new constants Note: unit tests don't run with MYSQLI -- Zend Framework's Mysqli adapater doesn't support prepare() yet git-svn-id: http://dev.piwik.org/svn/trunk@1473 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'piwik.php')
-rw-r--r--piwik.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/piwik.php b/piwik.php
index 5ad432ee98..75318790e0 100644
--- a/piwik.php
+++ b/piwik.php
@@ -12,7 +12,7 @@ if(file_exists('bootstrap.php'))
require_once 'bootstrap.php';
}
-$GLOBALS['PIWIK_TRACKER_DEBUG'] = false;
+$GLOBALS['PIWIK_TRACKER_DEBUG'] = false;
define('PIWIK_TRACKER_MODE', true);
error_reporting(E_ALL|E_NOTICE);