diff options
author | Simon L'nu <simon.lnu@gmail.com> | 2012-02-28 16:43:08 -0500 |
---|---|---|
committer | Simon L'nu <simon.lnu@gmail.com> | 2012-02-28 16:43:08 -0500 |
commit | 21d1dc48a8e83e55c55d894f85b742ef667553d7 (patch) | |
tree | d48c78c4ff3d59f06e4cf506ba46375f6f77e7d6 | |
parent | 718c5ea23e642f8eb3fd91670e5b8faf705df55b (diff) | |
parent | 733f830be4b554c83361e877a5f1108767a815fc (diff) | |
download | volse-hubzilla-21d1dc48a8e83e55c55d894f85b742ef667553d7.tar.gz volse-hubzilla-21d1dc48a8e83e55c55d894f85b742ef667553d7.tar.bz2 volse-hubzilla-21d1dc48a8e83e55c55d894f85b742ef667553d7.zip |
Merge branch 'master', remote-tracking branch 'remotes/upstream/master'
* remotes/upstream/master:
fix url and network display
* master:
-rwxr-xr-x | mod/viewcontacts.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/viewcontacts.php b/mod/viewcontacts.php index 10c980d93..6b66f60d7 100755 --- a/mod/viewcontacts.php +++ b/mod/viewcontacts.php @@ -63,7 +63,8 @@ function viewcontacts_content(&$a) { 'username' => $rr['name'], 'url' => $url, 'sparkle' => '', - 'item' => $rr, + 'itemurl' => $rr['url'], + 'network' => network_to_name($rr['network']), ); } |