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 'core/Intl/Data/Provider/RegionDataProvider.php')
-rw-r--r--core/Intl/Data/Provider/RegionDataProvider.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Intl/Data/Provider/RegionDataProvider.php b/core/Intl/Data/Provider/RegionDataProvider.php
index b47aa4ab9c..a859ac80ba 100644
--- a/core/Intl/Data/Provider/RegionDataProvider.php
+++ b/core/Intl/Data/Provider/RegionDataProvider.php
@@ -21,7 +21,7 @@ class RegionDataProvider
*/
public function getContinentList()
{
- require_once PIWIK_INCLUDE_PATH . '/core/DataFiles/Countries.php';
+ require PIWIK_INCLUDE_PATH . '/core/DataFiles/Countries.php';
return $GLOBALS['Piwik_ContinentList'];
}
@@ -35,7 +35,7 @@ class RegionDataProvider
*/
public static function getCountryList($includeInternalCodes = false)
{
- require_once PIWIK_INCLUDE_PATH . '/core/DataFiles/Countries.php';
+ require PIWIK_INCLUDE_PATH . '/core/DataFiles/Countries.php';
$countriesList = $GLOBALS['Piwik_CountryList'];
$extras = $GLOBALS['Piwik_CountryList_Extras'];