mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 03:15:56 +00:00
cleanup some defined-stuff
This commit is contained in:
@@ -701,7 +701,7 @@ class Af_RedditImgur extends Plugin {
|
||||
private function get_header($url, $header, $useragent = SELF_USER_AGENT) {
|
||||
$ret = false;
|
||||
|
||||
if (function_exists("curl_init") && !defined("NO_CURL")) {
|
||||
if (function_exists("curl_init")) {
|
||||
$ch = curl_init($url);
|
||||
curl_setopt($ch, CURLOPT_TIMEOUT, 5);
|
||||
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
|
||||
@@ -727,7 +727,7 @@ class Af_RedditImgur extends Plugin {
|
||||
|
||||
private function readability($article, $url, $doc, $xpath, $debug = false) {
|
||||
|
||||
if (!defined('NO_CURL') && function_exists("curl_init") && $this->host->get($this, "enable_readability") &&
|
||||
if (function_exists("curl_init") && $this->host->get($this, "enable_readability") &&
|
||||
mb_strlen(strip_tags($article["content"])) <= 150) {
|
||||
|
||||
// do not try to embed posts linking back to other reddit posts
|
||||
|
||||
@@ -21,7 +21,7 @@ class Af_Unburn extends Plugin {
|
||||
function hook_article_filter($article) {
|
||||
$owner_uid = $article["owner_uid"];
|
||||
|
||||
if (defined('NO_CURL') || !function_exists("curl_init") || ini_get("open_basedir"))
|
||||
if (!function_exists("curl_init") || ini_get("open_basedir"))
|
||||
return $article;
|
||||
|
||||
if ((strpos($article["link"], "feedproxy.google.com") !== false ||
|
||||
@@ -37,8 +37,8 @@ class Af_Unburn extends Plugin {
|
||||
curl_setopt($ch, CURLOPT_NOBODY, true);
|
||||
curl_setopt($ch, CURLOPT_USERAGENT, SELF_USER_AGENT);
|
||||
|
||||
if (defined('_CURL_HTTP_PROXY')) {
|
||||
curl_setopt($ch, CURLOPT_PROXY, _CURL_HTTP_PROXY);
|
||||
if (Config::get(Config::HTTP_PROXY)) {
|
||||
curl_setopt($ch, CURLOPT_PROXY, Config::get(Config::HTTP_PROXY));
|
||||
}
|
||||
|
||||
@curl_exec($ch);
|
||||
@@ -80,4 +80,4 @@ class Af_Unburn extends Plugin {
|
||||
return 2;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -56,7 +56,7 @@ class Auth_Remote extends Auth_Base {
|
||||
$_SESSION["hide_logout"] = true;
|
||||
|
||||
// LemonLDAP can send user informations via HTTP HEADER
|
||||
if (defined('AUTH_AUTO_CREATE') && AUTH_AUTO_CREATE){
|
||||
if (Config::get(Config::AUTH_AUTO_CREATE)) {
|
||||
// update user name
|
||||
$fullname = isset($_SERVER['HTTP_USER_NAME']) ? $_SERVER['HTTP_USER_NAME'] : ($_SERVER['AUTHENTICATE_CN'] ?? "");
|
||||
if ($fullname){
|
||||
|
||||
Reference in New Issue
Block a user