]> git.mxchange.org Git - friendica.git/blobdiff - mod/update_contact.php
Merge pull request #7893 from annando/api-attachments
[friendica.git] / mod / update_contact.php
index 361234fea77820ed8d6192e412e88f0d7c0d076f..bea33b4841f96286ffd4c9ff4a86b93c5a0e23fa 100644 (file)
@@ -14,7 +14,7 @@ function update_contact_content(App $a)
        echo "<section>";
 
        if ($_GET["force"] == 1) {
-               $text = Contact::content($a, true);
+               $text = Contact::content([], true);
        } else {
                $text = '';
        }
@@ -34,5 +34,5 @@ function update_contact_content(App $a)
        echo str_replace("\t", "       ", $text);
        echo "</section>";
        echo "</body></html>\r\n";
-       killme();
+       exit();
 }