don't need 'bookmark' - keep it simple

This commit is contained in:
friendica
2012-10-22 19:57:55 -07:00
parent 21578fd0b0
commit 88be2eaaae
2 changed files with 3 additions and 4 deletions

View File

@@ -264,9 +264,9 @@ function parse_url_content(&$a) {
logger('parse_url: ' . $url);
if($textmode)
$template = $br . '[bookmark=%s]%s[/bookmark]%s' . $br;
$template = $br . '[url=%s]%s[/url]%s' . $br;
else
$template = "<br /><a class=\"bookmark\" href=\"%s\" >%s</a>%s<br />";
$template = "<br /><a href=\"%s\" >%s</a>%s<br />";
$arr = array('url' => $url, 'text' => '');