]> git.mxchange.org Git - friendica.git/blobdiff - mod/register.php
no sharing from thread display page
[friendica.git] / mod / register.php
index d97b3e0cd59a7e130d290b5ed77f88f0c867a7d5..fdf488b1a75e96a01e1e56ab4270406fc1963b4c 100644 (file)
@@ -291,6 +291,12 @@ function register_post(&$a) {
                }
        }
 
+       if($netpublish && $a->config['register_policy'] != REGISTER_APPROVE) {
+               $url = $a->get_baseurl() . "/profile/$nickname";
+               proc_run('php',"include/directory.php","$url");
+       }
+
+
        if( $a->config['register_policy'] == REGISTER_OPEN ) {
                $email_tpl = load_view_file("view/register_open_eml.tpl");
                $email_tpl = replace_macros($email_tpl, array(
@@ -348,13 +354,6 @@ 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;
 }}
 
@@ -402,6 +401,10 @@ function register_content(&$a) {
                $oidlabel = t("Your OpenID \x28optional\x29: ");
        }
 
+       // I set this and got even more fake names than before...
+
+       $realpeople = ''; // t('Members of this network prefer to communicate with real people who use their real names.');
+
        if(get_config('system','publish_all')) {
                $profile_publish_reg = '<input type="hidden" name="profile_publish_reg" value="1" />';
        }
@@ -424,6 +427,7 @@ function register_content(&$a) {
        $o = load_view_file("view/register.tpl");
        $o = replace_macros($o, array(
                '$oidhtml' => $oidhtml,
+               '$realpeople' => $realpeople,
                '$regtitle'  => t('Registration'),
                '$registertext' =>((x($a->config,'register_text'))
                        ? '<div class="error-message">' . $a->config['register_text'] . '</div>'
@@ -434,7 +438,7 @@ function register_content(&$a) {
                '$openid'    => $openid_url,
                '$namelabel' => t('Your Full Name ' . "\x28" . 'e.g. Joe Smith' . "\x29" . ': '),
                '$addrlabel' => t('Your Email Address: '),
-               '$nickdesc'  => t('Choose a profile nickname. This must begin with a text character. Your global profile locator will then be \'<strong>nickname@$sitename</strong>\'.'),
+               '$nickdesc'  => t('Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \'<strong>nickname@$sitename</strong>\'.'),
                '$nicklabel' => t('Choose a nickname: '),
                '$photo'     => $photo,
                '$publish'   => $profile_publish,