From: Hypolite Petovan Date: Mon, 7 Jan 2019 18:25:14 +0000 (-0500) Subject: Fix call to Contact::content in mod/update_contact X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=abe60f0f9aa8c5a01469c05ca20c02767eb9e13b;p=friendica.git Fix call to Contact::content in mod/update_contact --- diff --git a/mod/update_contact.php b/mod/update_contact.php index bf15afa863..1f96dab25b 100644 --- a/mod/update_contact.php +++ b/mod/update_contact.php @@ -14,7 +14,7 @@ function update_contact_content(App $a) echo "
"; if ($_GET["force"] == 1) { - $text = Contact::content($a, true); + $text = Contact::content(true); } else { $text = ''; }