aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-02-23 01:37:15 -0800
committerFriendika <info@friendika.com>2011-02-23 01:37:15 -0800
commit365ff94137166f63211b9632c204a05a5cee7035 (patch)
tree30c1627017d3f35e4386729a8b31d3ff541a702d /mod
parenta5b80e5d564f6c239510dbee10daf3ff4c314f2e (diff)
downloadvolse-hubzilla-365ff94137166f63211b9632c204a05a5cee7035.tar.gz
volse-hubzilla-365ff94137166f63211b9632c204a05a5cee7035.tar.bz2
volse-hubzilla-365ff94137166f63211b9632c204a05a5cee7035.zip
push directory on register - if permitted
Diffstat (limited to 'mod')
-rw-r--r--mod/register.php8
-rw-r--r--mod/regmod.php10
2 files changed, 18 insertions, 0 deletions
diff --git a/mod/register.php b/mod/register.php
index 5c41fbfad..d97b3e0cd 100644
--- a/mod/register.php
+++ b/mod/register.php
@@ -347,6 +347,14 @@ function register_post(&$a) {
}
}
+
+ if($netpublish && $a->config['register_policy'] != REGISTER_APPROVE) {
+ $php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
+ $url = $a->get_baseurl() . "/profile/$nickname";
+ if($url && strlen(get_config('system','directory_submit_url')))
+ proc_run($php_path,"include/directory.php","$url");
+
+ }
return;
}}
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'],