diff options
author | redmatrix <git@macgirvin.com> | 2016-02-21 18:14:28 -0800 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-02-21 18:14:28 -0800 |
commit | edc7c0837b3b0a00fb4b4b06c2c82556fee90d09 (patch) | |
tree | 87e5e4d4c76c9f839680a550a4a8f7162158c406 /include/oembed.php | |
parent | f1564b4cff5a584d37b12000f68014df49e683d9 (diff) | |
download | volse-hubzilla-edc7c0837b3b0a00fb4b4b06c2c82556fee90d09.tar.gz volse-hubzilla-edc7c0837b3b0a00fb4b4b06c2c82556fee90d09.tar.bz2 volse-hubzilla-edc7c0837b3b0a00fb4b4b06c2c82556fee90d09.zip |
remove bookmark identifier from embedded links since they aren't bookmarkable without an associated taxonomy entry.
Diffstat (limited to 'include/oembed.php')
-rwxr-xr-x | include/oembed.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/oembed.php b/include/oembed.php index cac0154f6..fb7a30e65 100755 --- a/include/oembed.php +++ b/include/oembed.php @@ -232,7 +232,7 @@ function oembed_format_object($j){ // add link to source if not present in "rich" type if ( $j->type!='rich' || !strpos($j->html,$embedurl) ){ $embedlink = (isset($j->title))?$j->title:$embedurl; - $ret .= '<br /><span class="bookmark-identifier">#^</span>' . "<a href='$embedurl' rel='oembed'>$embedlink</a>"; + $ret .= '<br />' . "<a href='$embedurl' rel='oembed'>$embedlink</a>"; $ret .= "<br />"; if (isset($j->author_name)) $ret.=" by ".$j->author_name; if (isset($j->provider_name)) $ret.=" on ".$j->provider_name; |