diff options
author | olivierm <olivier@migeot.org> | 2011-02-23 20:25:37 +0100 |
---|---|---|
committer | olivierm <olivier@migeot.org> | 2011-02-23 20:25:37 +0100 |
commit | 75a8b684fcb198f03a4dc2f208395179144f5fe7 (patch) | |
tree | 4b4936b3a5280c87d740451f3ee54407834cf7de | |
parent | 3ad7c395fb9a33319531e04673563e7c9983d8f0 (diff) | |
parent | b6ba303f4b7649454bbee9a4f798f74b1f49c871 (diff) | |
download | volse-hubzilla-75a8b684fcb198f03a4dc2f208395179144f5fe7.tar.gz volse-hubzilla-75a8b684fcb198f03a4dc2f208395179144f5fe7.tar.bz2 volse-hubzilla-75a8b684fcb198f03a4dc2f208395179144f5fe7.zip |
Merge commit 'mike/master'
-rw-r--r-- | boot.php | 6 | ||||
-rw-r--r-- | include/datetime.php | 2 | ||||
-rw-r--r-- | mod/register.php | 8 | ||||
-rw-r--r-- | mod/regmod.php | 10 |
4 files changed, 22 insertions, 4 deletions
@@ -2430,13 +2430,13 @@ function prepare_body($item) { * $cmd and string args are surrounded with "" */ -if(! function_exists('run_proc')) { +if(! function_exists('proc_run')) { function proc_run($cmd){ $args = func_get_args(); call_hooks("proc_run", $args); - foreach ($args as &$arg){ - if(is_string($arg)) $arg='"'.$arg.'"'; + foreach ($args as $arg){ + $arg = escapeshellarg($arg); } $cmdline = implode($args," "); proc_close(proc_open($cmdline." &",array(),$foo)); diff --git a/include/datetime.php b/include/datetime.php index 724eec933..f7be5bdb1 100644 --- a/include/datetime.php +++ b/include/datetime.php @@ -275,7 +275,7 @@ function cal($y = 0,$m = 0, $links = false) { $o = '<table class="calendar">'; $o .= "<caption>$str_month $y</caption><tr>"; 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>'; while($d <= $l) { 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'], |