diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/api.php | 2 | ||||
-rw-r--r-- | include/text.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/api.php b/include/api.php index cf4d45c1a..4d74eb298 100644 --- a/include/api.php +++ b/include/api.php @@ -349,7 +349,7 @@ require_once('include/security.php'); 'location' => ($usr) ? $usr[0]['channel_location'] : '', 'profile_image_url' => $uinfo[0]['xchan_photo_l'], 'url' => $uinfo[0]['xchan_url'], - 'contact_url' => $a->get_baseurl()."/connnections/".$uinfo[0]['abook_id'], + 'contact_url' => $a->get_baseurl()."/connections/".$uinfo[0]['abook_id'], 'protected' => false, 'friends_count' => intval($countfriends), 'created_at' => api_date($uinfo[0]['abook_created']), diff --git a/include/text.php b/include/text.php index cb68fcc86..18c5aeaf1 100644 --- a/include/text.php +++ b/include/text.php @@ -572,7 +572,7 @@ function contact_block() { $total = intval($r[0]['total']); } if(! $total) { - $contacts = t('No connnections'); + $contacts = t('No connections'); $micropro = Null; } else { @@ -595,7 +595,7 @@ function contact_block() { $o = replace_macros($tpl, array( '$contacts' => $contacts, '$nickname' => $a->profile['nickname'], - '$viewcontacts' => t('View Connnections'), + '$viewcontacts' => t('View Connections'), '$micropro' => $micropro, )); |