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 <tsteur@users.noreply.github.com>2018-01-10 05:15:35 +0300
committerMatthieu Aubry <mattab@users.noreply.github.com>2018-01-10 05:15:35 +0300
commit94ba5f2801925bc3f41b64ee30d0d154bc0d0f45 (patch)
treef5ab30b5dc222012fedea53ba48d74423b1e90c4 /plugins
parentb127a1a48097671ed37106605a9a564602845038 (diff)
Update default DB table prefix (#12416)
* Update default DB table prefix * fix ui tests
Diffstat (limited to 'plugins')
-rw-r--r--plugins/Installation/FormDatabaseSetup.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Installation/FormDatabaseSetup.php b/plugins/Installation/FormDatabaseSetup.php
index 2b1be5b089..8d04cf0481 100644
--- a/plugins/Installation/FormDatabaseSetup.php
+++ b/plugins/Installation/FormDatabaseSetup.php
@@ -84,7 +84,7 @@ class FormDatabaseSetup extends QuickForm2
$this->addDataSource(new HTML_QuickForm2_DataSource_Array(array(
'host' => '127.0.0.1',
'type' => $defaultDatabaseType,
- 'tables_prefix' => 'piwik_',
+ 'tables_prefix' => 'matomo_',
)));
}