aboutsummaryrefslogtreecommitdiffstats
path: root/include/oembed.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-02-08 20:55:34 -0800
committerFriendika <info@friendika.com>2011-02-08 20:55:34 -0800
commit6b8bbef6c795fcf73c7c7271decf0f0bfed158c7 (patch)
tree5018521cad271e9885f600442774065adfe84269 /include/oembed.php
parentf70a0b028288fa13c64f1ffaa310765a95347dac (diff)
downloadvolse-hubzilla-6b8bbef6c795fcf73c7c7271decf0f0bfed158c7.tar.gz
volse-hubzilla-6b8bbef6c795fcf73c7c7271decf0f0bfed158c7.tar.bz2
volse-hubzilla-6b8bbef6c795fcf73c7c7271decf0f0bfed158c7.zip
suppress parse warnings
Diffstat (limited to 'include/oembed.php')
-rw-r--r--include/oembed.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/oembed.php b/include/oembed.php
index 37923a877..4d6b0af16 100644
--- a/include/oembed.php
+++ b/include/oembed.php
@@ -79,7 +79,10 @@ function oe_get_inner_html( $node ) {
* and replace it with [embed]url[/embed]
*/
function oembed_html2bbcode($text) {
- $dom = DOMDocument::loadHTML($text);
+ // If it doesn't parse at all, just return the text.
+ $dom = @DOMDocument::loadHTML($text);
+ if(! $dom)
+ return $text;
$xpath = new DOMXPath($dom);
$attr = "oembed";