mirror of
https://github.com/wallabag/wallabag.git
synced 2025-02-02 03:52:23 +00:00
Merge pull request #174 from nicofrand/dev
Add support for URLS with digits
This commit is contained in:
commit
83954e711d
1 changed files with 2 additions and 4 deletions
|
@ -27,9 +27,7 @@ class Url
|
|||
|
||||
public function isCorrect()
|
||||
{
|
||||
$pattern = '|^(.*:)//([a-z\-.]+)(:[0-9]+)?(.*)$|i';
|
||||
|
||||
return preg_match($pattern, $this->url);
|
||||
return filter_var($this->url, FILTER_VALIDATE_URL) !== FALSE;
|
||||
}
|
||||
|
||||
public function clean()
|
||||
|
@ -73,7 +71,7 @@ class Url
|
|||
if (preg_replace('/\s+/', '', $body->value) !== "<body></body>") {
|
||||
$html = $tidy->value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$parameters = array();
|
||||
if (isset($html) and strlen($html) > 0)
|
||||
|
|
Loading…
Reference in a new issue