push directory on register - if permitted
This commit is contained in:
parent
a5b80e5d56
commit
365ff94137
|
@ -275,7 +275,7 @@ function cal($y = 0,$m = 0, $links = false) {
|
||||||
$o = '<table class="calendar">';
|
$o = '<table class="calendar">';
|
||||||
$o .= "<caption>$str_month $y</caption><tr>";
|
$o .= "<caption>$str_month $y</caption><tr>";
|
||||||
for($a = 0; $a < 7; $a ++)
|
for($a = 0; $a < 7; $a ++)
|
||||||
$o .= '<th>' . substr(day_translate($dn[$a]),0,3) . '</th>';
|
$o .= '<th>' . mb_substr(day_translate($dn[$a]),0,3,'UTF-8') . '</th>';
|
||||||
$o .= '</tr><tr>';
|
$o .= '</tr><tr>';
|
||||||
|
|
||||||
while($d <= $l) {
|
while($d <= $l) {
|
||||||
|
|
|
@ -346,6 +346,14 @@ function register_post(&$a) {
|
||||||
goaway($a->get_baseurl());
|
goaway($a->get_baseurl());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
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;
|
return;
|
||||||
}}
|
}}
|
||||||
|
|
|
@ -70,6 +70,16 @@ function regmod_content(&$a) {
|
||||||
intval($register[0]['uid'])
|
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 = load_view_file("view/register_open_eml.tpl");
|
||||||
$email_tpl = replace_macros($email_tpl, array(
|
$email_tpl = replace_macros($email_tpl, array(
|
||||||
'$sitename' => $a->config['sitename'],
|
'$sitename' => $a->config['sitename'],
|
||||||
|
|
Loading…
Reference in a new issue