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:
authorStefan Giehl <stefan@piwik.org>2018-02-15 19:55:31 +0300
committerGitHub <noreply@github.com>2018-02-15 19:55:31 +0300
commit8716e8d20253ec81469bc0fb8532584c8ca3d57c (patch)
tree1f43de8672106c51c456d0f3a4b0ac61143f0818 /plugins/CoreAdminHome
parent87498556369e6a7156049b2de1e9b91a82b24aff (diff)
Use renamed composer packages (#12518)
* composer package piwik/searchengine-and-social-list is now matomo/searchengine-and-social-list * composer package piwik/referrer-spam-blacklist is now matomo/referrer-spam-blacklist * update icon submodule * update git url
Diffstat (limited to 'plugins/CoreAdminHome')
-rw-r--r--plugins/CoreAdminHome/Tasks.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/CoreAdminHome/Tasks.php b/plugins/CoreAdminHome/Tasks.php
index 8c856fdce3..b4542d23a7 100644
--- a/plugins/CoreAdminHome/Tasks.php
+++ b/plugins/CoreAdminHome/Tasks.php
@@ -116,11 +116,11 @@ class Tasks extends \Piwik\Plugin\Tasks
/**
* Update the referrer spam blacklist
*
- * @see https://github.com/piwik/referrer-spam-blacklist
+ * @see https://github.com/matomo-org/referrer-spam-blacklist
*/
public function updateSpammerBlacklist()
{
- $url = 'https://raw.githubusercontent.com/piwik/referrer-spam-blacklist/master/spammers.txt';
+ $url = 'https://raw.githubusercontent.com/matomo-org/referrer-spam-blacklist/master/spammers.txt';
$list = Http::sendHttpRequest($url, 30);
$list = preg_split("/\r\n|\n|\r/", $list);
if (count($list) < 10) {