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:
authorMatthieu Aubry <matt@piwik.org>2014-09-03 23:50:06 +0400
committerMatthieu Aubry <matt@piwik.org>2014-09-03 23:50:06 +0400
commit20371deb868a3cc48b2996a904fac5430afdbaf9 (patch)
tree7e2ac5cc16203cb02ada7f436a03c7c585cca0a7
parentd236a314e5391a8dcd179f17d5a9ee60e3a1c32f (diff)
parent641c99501c7989c4b4eb55031a04f909814748bf (diff)
Merge pull request #6084 from ThaDafinser/patch-5
Removing pre PHP 5.3 checks
-rw-r--r--core/testMinimumPhpVersion.php6
1 files changed, 0 insertions, 6 deletions
diff --git a/core/testMinimumPhpVersion.php b/core/testMinimumPhpVersion.php
index 5df0950b37..5a67f53716 100644
--- a/core/testMinimumPhpVersion.php
+++ b/core/testMinimumPhpVersion.php
@@ -26,12 +26,6 @@ if ($minimumPhpInvalid) {
support PHP $piwik_minimumPHPVersion.</p>
<p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p>";
} else {
- if (!class_exists('ArrayObject')) {
- $piwik_errorMessage .= "<p><strong>Piwik and Zend Framework require the SPL extension</strong></p>
- <p>It appears your PHP was compiled with <pre>--disable-spl</pre>.
- To enjoy Piwik, you need PHP compiled without that configure option.</p>";
- }
-
if (!extension_loaded('session')) {
$piwik_errorMessage .= "<p><strong>Piwik and Zend_Session require the session extension</strong></p>
<p>It appears your PHP was compiled with <pre>--disable-session</pre>.