Skip to content

Commit

Permalink
Fix #11
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Dec 23, 2013
1 parent 74771c7 commit af07105
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Embed/Providers/Html.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@ public function __construct (Url $Url) {
case 'msapplication-tileimage':
$icons[] = $Tag->getAttribute('content');
continue 2;

default:
if ($Tag->hasAttribute('content')) {
$this->set($name, $Tag->getAttribute('content'));
}
continue 2;
}
}

Expand Down

0 comments on commit af07105

Please sign in to comment.