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:
authormattpiwik <matthieu.aubry@gmail.com>2012-11-30 09:33:47 +0400
committermattpiwik <matthieu.aubry@gmail.com>2012-11-30 09:33:47 +0400
commitda0320cdaf6d88661b089d0558044c1932d36b05 (patch)
treed28808d338e5a73e974690d1e79288c4504cdaa1 /core/Http.php
parent40baaaa37cb133f9f6c10fdb34434f25d12f5148 (diff)
Removing silent fail to display errors when they occur eg. Unable to find the wrapper "https" - did you forget to enable it when you configured PHP?
which requires to uncomment from php.ini: ;extension=php_openssl.dll git-svn-id: http://dev.piwik.org/svn/trunk@7561 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'core/Http.php')
-rw-r--r--core/Http.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Http.php b/core/Http.php
index 2ba6943388..585fdfb796 100644
--- a/core/Http.php
+++ b/core/Http.php
@@ -414,7 +414,7 @@ class Piwik_Http
}
else
{
- $response = @file_get_contents($aUrl, 0, $ctx);
+ $response = file_get_contents($aUrl, 0, $ctx);
$fileLength = Piwik_Common::strlen($response);
}