From 54d80251fee99b61d2e5ff831b3cf977fe02c037 Mon Sep 17 00:00:00 2001 From: sgiehl <stefan@piwik.org> Date: Fri, 17 Jan 2014 11:13:02 +0100 Subject: [PATCH] fixed constant usage --- plugins/Referrers/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Referrers/functions.php b/plugins/Referrers/functions.php index 12a175fbbd..3a38cb1e5f 100644 --- a/plugins/Referrers/functions.php +++ b/plugins/Referrers/functions.php @@ -84,7 +84,7 @@ function getSocialsLogoFromUrl($domain) $filePattern = 'plugins/Referrers/images/socials/%s.png'; foreach ($socialNetworks as $domainKey => $name) { - if ($social == $socialNetworks[$domainKey] && file_exists(PIWIK_DOCUMENT_ROOT . '/' . sprintf($filePattern, $domainKey))) { + if ($social == $socialNetworks[$domainKey] && file_exists(PIWIK_INCLUDE_PATH . '/' . sprintf($filePattern, $domainKey))) { return sprintf($filePattern, $domainKey); } } -- GitLab