diff options
Diffstat (limited to 'mod')
-rw-r--r-- | mod/contacts.php | 9 | ||||
-rw-r--r-- | mod/dfrn_request.php | 2 |
2 files changed, 9 insertions, 2 deletions
diff --git a/mod/contacts.php b/mod/contacts.php index 92bce0a73..7236a200d 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -40,6 +40,8 @@ function contacts_post(&$a) { return; // NOTREACHED } + call_hooks('contact_edit_post', $_POST); + $profile_id = intval($_POST['profile-assign']); if($profile_id) { $r = q("SELECT `id` FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1", @@ -260,7 +262,11 @@ function contacts_content(&$a) { )); - return $o; + $arr = array('contact' => $r[0],'output' => $o); + + call_hooks('contact_edit', $arr); + + return $arr['output']; } @@ -350,6 +356,7 @@ function contacts_content(&$a) { '$url' => $url )); } + $o .= '<div id="contact-edit-end"></div>'; } diff --git a/mod/dfrn_request.php b/mod/dfrn_request.php index d5c5b83d5..6850f4be4 100644 --- a/mod/dfrn_request.php +++ b/mod/dfrn_request.php @@ -256,7 +256,7 @@ function dfrn_request_post(&$a) { FROM `intro` LEFT JOIN `contact` on `intro`.`contact-id` = `contact`.`id` WHERE `intro`.`blocked` = 1 AND `contact`.`self` = 0 AND `intro`.`datetime` < UTC_TIMESTAMP() - INTERVAL 30 MINUTE "); if(count($r)) { - foreach($r as ($rr) { + foreach($r as $rr) { if(! $rr['rel']) { q("DELETE FROM `contact` WHERE `id` = %d LIMIT 1", intval($rr['cid']) |