]> git.mxchange.org Git - friendica.git/commitdiff
move directory registration block before redirect
authorFriendika <info@friendika.com>
Wed, 23 Feb 2011 22:04:00 +0000 (14:04 -0800)
committerFriendika <info@friendika.com>
Wed, 23 Feb 2011 22:04:00 +0000 (14:04 -0800)
mod/register.php

index d97b3e0cd59a7e130d290b5ed77f88f0c867a7d5..d885362325014e3b5d8fa7112fd0cf40be5d87e6 100644 (file)
@@ -291,6 +291,13 @@ 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";
+               proc_run($php_path,"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 +355,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;
 }}