From 09ff2f0dd57a6fda0dd94485c602596c23187bdb Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 31 Oct 2015 00:01:33 +0100 Subject: [PATCH] Renamed the function --- include/Contact.php | 2 +- mod/network.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/Contact.php b/include/Contact.php index c747f04ea1..3f74a19d5f 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -191,7 +191,7 @@ function unmark_for_death($contact) { ); }} -function contact_data($url, $uid = -1) { +function get_contact_details_by_url($url, $uid = -1) { require_once("mod/proxy.php"); require_once("include/bbcode.php"); diff --git a/mod/network.php b/mod/network.php index 0cfdf5b611..e58c0cee49 100644 --- a/mod/network.php +++ b/mod/network.php @@ -155,7 +155,7 @@ function network_init(&$a) { intval($_GET['cid'])); if ($r) { $a->page['aside'] = ""; - profile_load($a, "", 0, contact_data($r[0]["url"])); + profile_load($a, "", 0, get_contact_details_by_url($r[0]["url"])); } } } -- 2.39.5