X
Xon
Guest
The
PHP:
Read more
Continue reading...
actionTestUrlUnfurling
function will silently fail if given a URL which the URL validator doesn't consider valid.PHP:
Code:
public function actionTestUrlUnfurling()
{
$this->setSectionContext('testUrlUnfurling');
$urlValidator = \XF::app()->validator('Url');
$url = $this->filter('url', 'str');
$url = $urlValidator->coerceValue($url);
if ($this->isPost() && $url && $urlValidator->isValid($url))
{
...
}
else
{
$results = false;
$error = false;
$body =...
Read more
Continue reading...