Renamed the function

This commit is contained in:
Michael Vogel 2015-10-31 00:01:33 +01:00
parent f3ce812a9e
commit 09ff2f0dd5
2 changed files with 2 additions and 2 deletions

View file

@ -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("mod/proxy.php");
require_once("include/bbcode.php"); require_once("include/bbcode.php");

View file

@ -155,7 +155,7 @@ function network_init(&$a) {
intval($_GET['cid'])); intval($_GET['cid']));
if ($r) { if ($r) {
$a->page['aside'] = ""; $a->page['aside'] = "";
profile_load($a, "", 0, contact_data($r[0]["url"])); profile_load($a, "", 0, get_contact_details_by_url($r[0]["url"]));
} }
} }
} }