diff options
| author | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2013-04-07 00:56:48 +0400 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2013-04-07 00:56:48 +0400 |
| commit | 196464eef212a4e0f6be392cea2128a7143f0f80 (patch) | |
| tree | 042ef89280befdfdea55d87f2a84ea14e91114c6 | |
| parent | 7e27c914095c34f753c25ec8200ea77a9e497aae (diff) | |
installer: remove check for pubsubhubbub which is never defined
| -rw-r--r-- | install/index.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/install/index.php b/install/index.php index 8b0de294f..026e00d01 100644 --- a/install/index.php +++ b/install/index.php @@ -57,10 +57,6 @@ array_push($errors, "PHP safe mode setting is not supported."); } */ - if ((PUBSUBHUBBUB_HUB || PUBSUBHUBBUB_ENABLED) && !function_exists("curl_init")) { - array_push($errors, "PHP support for CURL is required for PubSubHubbub."); - } - if (!class_exists("DOMDocument")) { array_push($errors, "PHP support for DOMDocument is required, but was not found."); } |