Skip to content

Commit

Permalink
Properly recognize the development environment.
Browse files Browse the repository at this point in the history
refs #3736
  • Loading branch information
halfdan committed Feb 5, 2013
1 parent 62efc03 commit d48af43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/Piwik.php
Expand Up @@ -671,7 +671,7 @@ static public function getFileIntegrityInformation()
$messages[] = true;

// ignore dev environments
if(file_exists(PIWIK_INCLUDE_PATH . '/.svn'))
if(file_exists(PIWIK_INCLUDE_PATH . '/.git'))
{
$messages[] = Piwik_Translate('General_WarningFileIntegritySkipped');
return $messages;
Expand Down

0 comments on commit d48af43

Please sign in to comment.