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:
Diffstat (limited to 'plugins/SEO/Metric/Bing.php')
-rw-r--r--plugins/SEO/Metric/Bing.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/SEO/Metric/Bing.php b/plugins/SEO/Metric/Bing.php
index 71553ffc6e..b0805548d4 100644
--- a/plugins/SEO/Metric/Bing.php
+++ b/plugins/SEO/Metric/Bing.php
@@ -18,7 +18,7 @@ use Psr\Log\LoggerInterface;
*/
class Bing implements MetricsProvider
{
- const URL = 'http://www.bing.com/search?mkt=en-US&q=site%3A';
+ const URL = 'http://www.bing.com/search?setlang=en-US&rdr=1&q=site%3A';
/**
* @var LoggerInterface
@@ -37,8 +37,8 @@ class Bing implements MetricsProvider
try {
$response = str_replace(' ', ' ', Http::sendHttpRequest($url, $timeout = 10, @$_SERVER['HTTP_USER_AGENT']));
- if (preg_match('#([0-9\,]+) results#i', $response, $p)) {
- $pageCount = NumberFormatter::getInstance()->formatNumber((int)str_replace(',', '', $p[1]));
+ if (preg_match('#([0-9,\.]+) results#i', $response, $p)) {
+ $pageCount = NumberFormatter::getInstance()->formatNumber((int)str_replace(array(',', '.'), '', $p[1]));
} else {
$pageCount = 0;
}