From 365ff94137166f63211b9632c204a05a5cee7035 Mon Sep 17 00:00:00 2001 From: Friendika Date: Wed, 23 Feb 2011 01:37:15 -0800 Subject: push directory on register - if permitted --- mod/regmod.php | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'mod/regmod.php') diff --git a/mod/regmod.php b/mod/regmod.php index eabbec090..f662902d8 100644 --- a/mod/regmod.php +++ b/mod/regmod.php @@ -70,6 +70,16 @@ function regmod_content(&$a) { intval($register[0]['uid']) ); + $r = q("SELECT * FROM `profile` WHERE `uid` = %d AND `is-default` = 1", + intval($user[0]['uid']) + ); + if(count($r) && $r[0]['net-publish']) { + $php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php'); + $url = $a->get_baseurl() . '/profile/' . $user[0]['nickname']; + if($url && strlen(get_config('system','directory_submit_url'))) + proc_run($php_path,"include/directory.php","$url"); + } + $email_tpl = load_view_file("view/register_open_eml.tpl"); $email_tpl = replace_macros($email_tpl, array( '$sitename' => $a->config['sitename'], -- cgit v1.2.3