diff options
author | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2011-05-31 07:36:25 +0200 |
---|---|---|
committer | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2011-05-31 07:36:25 +0200 |
commit | 745d075397941e0a84d017342bb9c4c4a4c1ef5b (patch) | |
tree | 98c1e5e93952b281dbedb63c1fb2e18344153202 /mod/contacts.php | |
parent | 087f79236e79975d482f739e84cc16f6648e1bec (diff) | |
parent | f95ea14478e256d7eb331385746f83532d78d84a (diff) | |
download | volse-hubzilla-745d075397941e0a84d017342bb9c4c4a4c1ef5b.tar.gz volse-hubzilla-745d075397941e0a84d017342bb9c4c4a4c1ef5b.tar.bz2 volse-hubzilla-745d075397941e0a84d017342bb9c4c4a4c1ef5b.zip |
Merge branch 'master' of git://github.com/friendika/friendika
Diffstat (limited to 'mod/contacts.php')
-rw-r--r-- | mod/contacts.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/contacts.php b/mod/contacts.php index 2ed7f198e..4baa2d2d7 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -58,7 +58,7 @@ function contacts_post(&$a) { return; } } -logger('contact_edit ' . print_r($_POST,true)); + $priority = intval($_POST['poll']); if($priority == (-1)) @@ -269,7 +269,7 @@ function contacts_content(&$a) { '$lbl_rep2' => t('Occasionally your friends may wish to inquire about this person\'s online legitimacy.'), '$lbl_rep3' => t('You may help them choose whether or not to interact with this person by providing a <em>reputation</em> to guide them.'), '$lbl_rep4' => t('Please take a moment to elaborate on this selection if you feel it could be helpful to others.'), - '$visit' => t('Visit $name\'s profile'), + '$visit' => sprintf( t('Visit %s\'s profile [%s]'),$r[0]['name'],$r[0]['url']), '$blockunblock' => t('Block/Unblock contact'), '$ignorecont' => t('Ignore contact'), '$altcrepair' => t('Repair contact URL settings'), @@ -384,7 +384,7 @@ function contacts_content(&$a) { $o .= replace_macros($tpl, array( - '$img_hover' => t('Visit $username\'s profile'), + '$img_hover' => sprintf( t('Visit %s\'s profile [%s]'),$rr['name'],$rr['url']), '$edit_hover' => t('Edit contact'), '$id' => $rr['id'], '$alt_text' => $alt_text, |