diff --git a/app/models/Feed.php b/app/models/Feed.php index 7568069b0d0..c88a4d52749 100644 --- a/app/models/Feed.php +++ b/app/models/Feed.php @@ -43,6 +43,10 @@ public function nbEntries () { } public function _url ($value) { + if (!is_null ($value) && !preg_match ('#^https?://#', $value)) { + $value = 'http://' . $value; + } + if (!is_null ($value) && filter_var ($value, FILTER_VALIDATE_URL)) { $this->url = $value; } else {