Просмотр исходного кода

Merge branch 'HTTPS_Everywhere' of https://github.com/Alkarex/FreshRSS into HTTPS_Everywhere

Alexandre Alapetite 10 лет назад
Родитель
Сommit
1f7647f4df
2 измененных файлов с 3 добавлено и 2 удалено
  1. 1 1
      lib/SimplePie/SimplePie/Misc.php
  2. 2 1
      lib/SimplePie/SimplePie/Sanitize.php

+ 1 - 1
lib/SimplePie/SimplePie/Misc.php

@@ -97,7 +97,7 @@ class SimplePie_Misc
 		{
 			return false;
 		}
-		return SimplePie_Misc::https_url($iri->get_uri());
+		return $iri->get_uri();
 	}
 
 	/**

+ 2 - 1
lib/SimplePie/SimplePie/Sanitize.php

@@ -451,7 +451,8 @@ class SimplePie_Sanitize
 					if ($element->hasAttribute($attribute))
 					{
 						$value = $this->registry->call('Misc', 'absolutize_url', array($element->getAttribute($attribute), $this->base));
-						if ($value !== false)
+						$value = SimplePie_Misc::https_url($value);	//FreshRSS
+						if ($value)
 						{
 							$element->setAttribute($attribute, $value);
 						}