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:
authordiosmosis <benakamoorthi@fastmail.fm>2014-04-02 22:08:57 +0400
committerdiosmosis <benakamoorthi@fastmail.fm>2014-04-02 22:09:36 +0400
commit267783eb8a8904efd807d309203987d6dae25d2e (patch)
tree4715eeb96b486a96301e65a0665576b26d6dfaab /core/Console.php
parentc604bb6e4943f01b75015f09662c49bb51d39198 (diff)
Replace CloudAdmin reference to EnterpriseAdmin.
Diffstat (limited to 'core/Console.php')
-rw-r--r--core/Console.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/Console.php b/core/Console.php
index e6d1f91397..f2db14934f 100644
--- a/core/Console.php
+++ b/core/Console.php
@@ -119,9 +119,9 @@ class Console extends Application
$commands = array(
'Piwik\CliMulti\RequestCommand'
);
-
- if (class_exists('Piwik\Plugins\CloudAdmin\CloudAdmin')) {
- $extra = new \Piwik\Plugins\CloudAdmin\CloudAdmin();
+
+ if (class_exists('Piwik\Plugins\EnterpriseAdmin\EnterpriseAdmin')) {
+ $extra = new \Piwik\Plugins\EnterpriseAdmin\EnterpriseAdmin();
$extra->addConsoleCommands($commands);
}
return $commands;