mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-05-24 16:25:00 -04:00
SimplePie HTTPS updated comments
https://github.com/FreshRSS/FreshRSS/issues/1083
This commit is contained in:
@@ -1236,7 +1236,7 @@ class SimplePie
|
||||
|
||||
/**
|
||||
* Set the list of domains for which force HTTPS.
|
||||
* @see SimplePie_Misc::https_url()
|
||||
* @see SimplePie_Sanitize::set_https_domains()
|
||||
* FreshRSS
|
||||
*/
|
||||
public function set_https_domains($domains = array())
|
||||
|
||||
@@ -75,11 +75,12 @@ class SimplePie_Sanitize
|
||||
|
||||
/**
|
||||
* List of domains for which force HTTPS.
|
||||
* @see SimplePie_Misc::https_url()
|
||||
* Array is tree split at DNS levels. Example array('biz' => true, 'com' => array('example' => true), 'example' => array('test') => array('www' => true));
|
||||
* @see SimplePie_Sanitize::set_https_domains()
|
||||
* Array is tree split at DNS levels. Example:
|
||||
* array('biz' => true, 'com' => array('example' => true), 'net' => array('example') => array('www' => true))
|
||||
* FreshRSS
|
||||
*/
|
||||
var $https_domains = array('com' => array('youtube' => true));
|
||||
var $https_domains = array('com' => array('dailymotion' => true, 'youtube' => true));
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user