]> git.mxchange.org Git - friendica.git/blobdiff - mod/register.php
Totally tacky...
[friendica.git] / mod / register.php
index 2d91689827ad62ad61028d5a9252cff24ecf5b7a..97038def0ba15a0d6b8b02d85aad9c10762372b9 100644 (file)
@@ -63,6 +63,10 @@ function register_post(&$a) {
                return;
        }
 
+       if(! validate_url($tmp_str))
+               $openid_url = '';
+
+
        $err = '';
 
 
@@ -287,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(
@@ -343,6 +353,7 @@ function register_post(&$a) {
                }
 
        }
+
        return;
 }}