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:
authormattab <matthieu.aubry@gmail.com>2013-10-07 08:29:24 +0400
committermattab <matthieu.aubry@gmail.com>2013-10-07 08:29:26 +0400
commita27771ee5a807eccbed9c9bc62262e79f59fe065 (patch)
tree4a15c24a9a4d7b4d79134a985c11c4e68168261e /plugins/Proxy
parent6aa7ab6538cdd84af0b89b6e2d2d9524600ac5f2 (diff)
Refs #4125 Renaming plugin from Referers to Referrers
* updating all variables/methods containing Referers * RENAMING custom segments definition, and custom scheduled reports definition, so that when they load "Referers" segment/report it still works as expected * RENAMING old archived data so that archived blobs are called Referrers * Reverting part of 0deb2bbb8d5598200f7adfbc77b190516f919e48 * Update integration tests generating PDF+HTML with images on my dev box (GD 2.1 and PHP 5.5)
Diffstat (limited to 'plugins/Proxy')
-rw-r--r--plugins/Proxy/Controller.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Proxy/Controller.php b/plugins/Proxy/Controller.php
index 9d2927f2ad..3531d781a4 100644
--- a/plugins/Proxy/Controller.php
+++ b/plugins/Proxy/Controller.php
@@ -62,11 +62,11 @@ class Controller extends \Piwik\Controller
$url = Common::getRequestVar('url', '', 'string', $_GET);
// validate referrer
- $referrer = Url::getReferer();
+ $referrer = Url::getReferrer();
if (empty($referrer) || !Url::isLocalUrl($referrer)) {
die('Invalid Referrer detected - This means that your web browser is not sending the "Referrer URL" which is
required to proceed with the redirect. Verify your browser settings and add-ons, to check why your browser
- is not sending this referer.
+ is not sending this referrer.
<br/><br/>You can access the page at: ' . $url);
}