]> git.mxchange.org Git - friendica.git/commitdiff
Renamed the function
authorMichael Vogel <icarus@dabo.de>
Fri, 30 Oct 2015 23:01:33 +0000 (00:01 +0100)
committerMichael Vogel <icarus@dabo.de>
Fri, 30 Oct 2015 23:01:33 +0000 (00:01 +0100)
include/Contact.php
mod/network.php

index c747f04ea1e496068c663b866f406b6eaac89e6f..3f74a19d5f44e66f22a9b9dfcdeaed6b6ebdf46f 100644 (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("include/bbcode.php");
 
index 0cfdf5b611d89276b87c382c254c291750582a4b..e58c0cee49a0a01216ad0ab4a547a510a27c4574 100644 (file)
@@ -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"]));
                }
        }
 }