From 15f2ce5459153336dfb53abcdbb557bf9f2e51c0 Mon Sep 17 00:00:00 2001 From: Friendika Date: Wed, 9 Nov 2011 19:30:14 -0800 Subject: contact edit updates --- mod/crepair.php | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) (limited to 'mod/crepair.php') diff --git a/mod/crepair.php b/mod/crepair.php index 79223abb9..536635278 100644 --- a/mod/crepair.php +++ b/mod/crepair.php @@ -1,5 +1,37 @@ argc == 2) && intval($a->argv[1])) { + $contact_id = intval($a->argv[1]); + $r = q("SELECT * FROM `contact` WHERE `uid` = %d and `id` = %d LIMIT 1", + intval(local_user()), + intval($contact_id) + ); + if(! count($r)) { + $contact_id = 0; + } + } + + if(! x($a->page,'aside')) + $a->page['aside'] = ''; + + if($contact_id) { + $a->data['contact'] = $r[0]; + $o .= '
'; + $o .= '
' . $a->data['contact']['name'] . '
'; + $o .= '
' . $a->data['contact']['name'] . '
'; + $o .= '
'; + $a->page['aside'] .= $o; + + } +} + + function crepair_post(&$a) { if(! local_user()) return; @@ -100,7 +132,7 @@ function crepair_content(&$a) { $msg1 = t('Repair Contact Settings'); - $msg2 = t('WARNING: This is highly advanced and if you enter incorrect information your communications with this contact will stop working.'); + $msg2 = t('WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working.'); $msg3 = t('Please use your browser \'Back\' button now if you are uncertain what to do on this page.'); $o .= '

' . $msg1 . '

'; -- cgit v1.2.3