mirror of
https://github.com/moparisthebest/wallabag
synced 2024-11-23 17:42:15 -05:00
Merge pull request #174 from nicofrand/dev
Add support for URLS with digits
This commit is contained in:
commit
83954e711d
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user