summaryrefslogtreecommitdiffstats
path: root/vendor/fguillot/picofeed/lib/PicoFeed/Client/Stream.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2015-07-13 17:44:44 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2015-07-13 17:44:44 +0200
commit17f2cf72af4173409ee294a204de4221b0275428 (patch)
tree366d2621adfe0c4b862d0afba607076c5d3e30e0 /vendor/fguillot/picofeed/lib/PicoFeed/Client/Stream.php
parent5ee4dcd035cbf8c00ff95f02fce6ff6b3dc61aaf (diff)
update picofeed
Diffstat (limited to 'vendor/fguillot/picofeed/lib/PicoFeed/Client/Stream.php')
-rw-r--r--vendor/fguillot/picofeed/lib/PicoFeed/Client/Stream.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Client/Stream.php b/vendor/fguillot/picofeed/lib/PicoFeed/Client/Stream.php
index 72afe92c0..36c5ca6f3 100644
--- a/vendor/fguillot/picofeed/lib/PicoFeed/Client/Stream.php
+++ b/vendor/fguillot/picofeed/lib/PicoFeed/Client/Stream.php
@@ -62,7 +62,7 @@ class Stream extends Client
{
foreach($headers as $header) {
if (stripos($header, 'Location') === 0) {
- list($name, $value) = explode(': ', $header);
+ list(, $value) = explode(': ', $header);
$this->url = Url::resolve($value, $this->url);
}