diff options
Diffstat (limited to 'mod')
-rw-r--r-- | mod/connections.php | 12 | ||||
-rw-r--r-- | mod/group.php | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/mod/connections.php b/mod/connections.php index c6eb95418..158d2fd23 100644 --- a/mod/connections.php +++ b/mod/connections.php @@ -34,7 +34,7 @@ function connections_aside(&$a) { $a->set_widget('follow', follow_widget()); } - $a->set_widget('collections', group_side('connnections','group',false,0,((array_key_exists('abook',$a->data)) ? $a->data['abook']['abook_xchan'] : ''))); + $a->set_widget('collections', group_side('connections','group',false,0,((array_key_exists('abook',$a->data)) ? $a->data['abook']['abook_xchan'] : ''))); $a->set_widget('findpeople',findpeople_widget()); } @@ -57,7 +57,7 @@ function connections_post(&$a) { if(! $orig_record) { notice( t('Could not access contact record.') . EOL); - goaway($a->get_baseurl(true) . '/connnections'); + goaway($a->get_baseurl(true) . '/connections'); return; // NOTREACHED } @@ -111,7 +111,7 @@ function connections_post(&$a) { if($r) info( t('Connection updated.') . EOL); else - notice( t('Failed to update connnection record.') . EOL); + notice( t('Failed to update connection record.') . EOL); if((x($a->data,'abook')) && $a->data['abook']['abook_my_perms'] != $abook_my_perms @@ -360,7 +360,7 @@ function connections_content(&$a) { '$addr' => $contact['xchan_addr'], '$notself' => (($self) ? '' : '1'), '$self' => (($self) ? '1' : ''), - '$autolbl' => t('When receiving a channel introduction, any permissions provided here will be applied to the new connnection automatically and the introduction approved. Leave this page if you do not wish to use this feature.'), + '$autolbl' => t('When receiving a channel introduction, any permissions provided here will be applied to the new connection automatically and the introduction approved. Leave this page if you do not wish to use this feature.'), '$viewprof' => t('View Profile'), '$lbl_slider' => t('Slide to adjust your degree of friendship'), '$slide' => $slide, @@ -607,11 +607,11 @@ function connections_content(&$a) { $tpl = get_markup_template("contacts-template.tpl"); $o .= replace_macros($tpl,array( - '$header' => t('Connnections') . (($head) ? ' - ' . $head : ''), + '$header' => t('Connections') . (($head) ? ' - ' . $head : ''), '$tabs' => $t, '$total' => $total, '$search' => $search_hdr, - '$desc' => t('Search your connnections'), + '$desc' => t('Search your connections'), '$finding' => (($searching) ? t('Finding: ') . "'" . $search . "'" : ""), '$submit' => t('Find'), '$cmd' => $a->cmd, diff --git a/mod/group.php b/mod/group.php index 6c9b8d78c..b3ee79f9b 100644 --- a/mod/group.php +++ b/mod/group.php @@ -139,7 +139,7 @@ function group_content(&$a) { ); if(! $r) { notice( t('Collection not found.') . EOL ); - goaway($a->get_baseurl() . '/connnections'); + goaway($a->get_baseurl() . '/connections'); } $group = $r[0]; |