aboutsummaryrefslogtreecommitdiffstats
path: root/include/oembed.php
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-02-21 18:14:28 -0800
committerredmatrix <git@macgirvin.com>2016-02-21 18:14:28 -0800
commitedc7c0837b3b0a00fb4b4b06c2c82556fee90d09 (patch)
tree87e5e4d4c76c9f839680a550a4a8f7162158c406 /include/oembed.php
parentf1564b4cff5a584d37b12000f68014df49e683d9 (diff)
downloadvolse-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-xinclude/oembed.php2
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;