|
|
@@ -172,7 +172,7 @@ class Feed extends Model {
|
|
|
);
|
|
|
} else {
|
|
|
$feed = new SimplePie ();
|
|
|
- $url = preg_replace ('/&/', '&', $this->url);
|
|
|
+ $url = str_replace ('&', '&', $this->url);
|
|
|
if ($this->httpAuth != '') {
|
|
|
$url = preg_replace ('#((.+)://)(.+)#', '${1}' . $this->httpAuth . '@${3}', $url);
|
|
|
}
|