fix url mismatches of a single trailing slash for feed author/owner comparisons; update diaspora_compat

This commit is contained in:
friendica
2014-09-23 20:55:22 -07:00
parent 02210b81d8
commit 81ee35e03b
4 changed files with 10 additions and 15 deletions

View File

@@ -1424,6 +1424,9 @@ function get_atom_elements($feed,$item,&$author) {
$author['author_link'] = unxmlify($feed->get_permalink());
}
if(substr($author['author_link'],-1,1) == '/')
$author['author_link'] = substr($author['author_link'],0,-1);
$res['mid'] = base64url_encode(unxmlify($item->get_id()));
$res['title'] = unxmlify($item->get_title());
$res['body'] = unxmlify($item->get_content());