]> git.mxchange.org Git - friendica.git/commitdiff
Use "sup" instead of "h5" for the link to the website
authorMichael <heluecht@pirati.ca>
Fri, 26 Jan 2018 13:27:16 +0000 (13:27 +0000)
committerMichael <heluecht@pirati.ca>
Fri, 26 Jan 2018 13:27:16 +0000 (13:27 +0000)
include/bbcode.php
mod/contacts.php

index f95c911d5eb299e081b925cf44675dcb0523a7d6..79412f1a3fde2f2076763f3698206148815b0b41 100644 (file)
@@ -106,7 +106,7 @@ function bb_attachment($return, $simplehtml = false, $tryoembed = true)
                        }
 
                        if ($data["type"] == "link") {
-                               $return .= sprintf('<h5><a href="%s">%s</a></h5>', $data['url'], parse_url($data['url'], PHP_URL_HOST));
+                               $return .= sprintf('<sup><a href="%s">%s</a></sup>', $data['url'], parse_url($data['url'], PHP_URL_HOST));
                        }
 
                        if ($simplehtml != 4) {
index 49c6e710ffcc2d4eee00f34a3f3b5539c0805060..12f6075dd6f26fa0b47a9bb6b98da2fafde31a0f 100644 (file)
@@ -552,7 +552,7 @@ function contacts_content(App $a)
                // tabs
                $tab_str = contacts_tab($a, $contact_id, 2);
 
-               $lost_contact = (($contact['archive'] && $contact['term-date'] > NULL_DATE && $contact['term-date'] < datetime_converL10n::t('', '', 'now')) ? L10n::t('Communications lost with this contact!') : '');
+               $lost_contact = (($contact['archive'] && $contact['term-date'] > NULL_DATE && $contact['term-date'] < datetime_convert('', '', 'now')) ? L10n::t('Communications lost with this contact!') : '');
 
                $fetch_further_information = null;
                if ($contact['network'] == NETWORK_FEED) {