]> git.mxchange.org Git - friendica.git/blobdiff - mod/uimport.php
Merge develop into 0602_contact_profile
[friendica.git] / mod / uimport.php
index 942268b0ef0a89ac0cd523a70a74ef92c9658320..7ed5648d9e2d360de0cef3b85bb885ed9a903d66 100644 (file)
@@ -5,7 +5,6 @@
 \r
 require_once("include/uimport.php");\r
 \r
-if(! function_exists('uimport_post')) {\r
 function uimport_post(&$a) {\r
        switch($a->config['register_policy']) {\r
         case REGISTER_OPEN:\r
@@ -28,18 +27,16 @@ function uimport_post(&$a) {
             $verified = 0;\r
             break;\r
        }\r
-\r
+    \r
     if (x($_FILES,'accountfile')){\r
         /// @TODO Pass $blocked / $verified, send email to admin on REGISTER_APPROVE\r
         import_account($a, $_FILES['accountfile']);\r
         return;\r
     }\r
 }\r
-}\r
 \r
-if(! function_exists('uimport_content')) {\r
 function uimport_content(&$a) {\r
-\r
+       \r
        if((! local_user()) && ($a->config['register_policy'] == REGISTER_CLOSED)) {\r
                notice("Permission denied." . EOL);\r
                return;\r
@@ -54,8 +51,8 @@ function uimport_content(&$a) {
                        return;\r
                }\r
        }\r
-\r
-\r
+       \r
+       \r
        if(x($_SESSION,'theme'))\r
                unset($_SESSION['theme']);\r
        if(x($_SESSION,'mobile-theme'))\r
@@ -74,4 +71,3 @@ function uimport_content(&$a) {
         ),\r
     ));\r
 }\r
-}\r