summaryrefslogtreecommitdiff
path: root/plugins/af_readability
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2015-11-20 13:34:52 +0300
committerAndrew Dolgov <[email protected]>2015-11-20 13:34:52 +0300
commitaa03bac42490673b4cd027c779655a027b1dd0fc (patch)
tree35720efb77a997c9708aea209186e4a384ec5b25 /plugins/af_readability
parent4c46702672631c0cf84067d6f2c55b3bfda1db6f (diff)
allow NO_CURL to disable several CURL-related checks in plugins
af_readability: skip http content-type checking when open_basedir is enabled
Diffstat (limited to 'plugins/af_readability')
-rwxr-xr-xplugins/af_readability/init.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/af_readability/init.php b/plugins/af_readability/init.php
index 6216d510a..675e5c5d5 100755
--- a/plugins/af_readability/init.php
+++ b/plugins/af_readability/init.php
@@ -100,13 +100,15 @@ class Af_Readability extends Plugin {
if (!class_exists("Readability")) require_once(dirname(dirname(__DIR__)). "/lib/readability/Readability.php");
- if (function_exists("curl_init")) {
+ if (!defined('NO_CURL') && function_exists('curl_init') && !ini_get("open_basedir")) {
+
$ch = curl_init($article["link"]);
+
curl_setopt($ch, CURLOPT_TIMEOUT, 5);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_NOBODY, true);
- curl_setopt($ch, CURLOPT_FOLLOWLOCATION, !ini_get("open_basedir"));
+ curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_USERAGENT, SELF_USER_AGENT);
@$result = curl_exec($ch);