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:
authorMartin Keckeis <martin.keckeis1@gmail.com>2017-06-19 14:39:29 +0300
committerStefan Giehl <stefan@piwik.org>2017-06-19 14:39:29 +0300
commit22b48527b826434ab0fb500160aa4ce17ebfd34a (patch)
tree8d289917ad81968f5502a4655afa19e5f4dbefcf /plugins/CoreUpdater
parent14047e5c6475636ddf0691675b2deaab5ae285ba (diff)
disable outgoing communication with one setting (#11465)
* disable outgoing communication with one setting * disabled piwik blog if isInternetEnabled=0 * better description for enable_internet_features * reenable plugin
Diffstat (limited to 'plugins/CoreUpdater')
-rw-r--r--plugins/CoreUpdater/UpdateCommunication.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/plugins/CoreUpdater/UpdateCommunication.php b/plugins/CoreUpdater/UpdateCommunication.php
index 971bd16fa0..43271c83dc 100644
--- a/plugins/CoreUpdater/UpdateCommunication.php
+++ b/plugins/CoreUpdater/UpdateCommunication.php
@@ -30,9 +30,13 @@ class UpdateCommunication
*/
public function isEnabled()
{
- $isEnabled = Config::getInstance()->General['enable_update_communication'];
+ $isEnabled = (bool) Config::getInstance()->General['enable_update_communication'];
- return !empty($isEnabled);
+ if($isEnabled === true && SettingsPiwik::isInternetEnabled() === true){
+ return true;
+ }
+
+ return false;
}
/**