From 80ed4242ee71031f73aa4ef32f17edbf6e989f51 Mon Sep 17 00:00:00 2001 From: Friendika Date: Mon, 28 Feb 2011 19:44:47 -0800 Subject: singleuser site mode plus fix search template layout --- mod/home.php | 6 ++++-- mod/network.php | 1 + mod/search.php | 1 + 3 files changed, 6 insertions(+), 2 deletions(-) (limited to 'mod') diff --git a/mod/home.php b/mod/home.php index d45b13ed5..20d38cfca 100644 --- a/mod/home.php +++ b/mod/home.php @@ -4,9 +4,11 @@ if(! function_exists('home_init')) { function home_init(&$a) { if(local_user() && ($a->user['nickname'])) - goaway( $a->get_baseurl() . "/profile/" . $a->user['nickname'] ); + goaway( $a->get_baseurl() . "/profile/" . $a->user['nickname'] ); + + if(strlen(get_config('system','singleuser'))) + goaway( $a->get_baseurl() . "/profile/" . get_config('system','singleuser')); - $a->page['htmlhead'] .= "get_baseurl() . "/profile/%s" . "\" />\r\n"; }} diff --git a/mod/network.php b/mod/network.php index e50723ae7..8ac51cee3 100644 --- a/mod/network.php +++ b/mod/network.php @@ -245,6 +245,7 @@ function network_content(&$a, $update = 0) { $o .= replace_macros($tpl,array( '$id' => $item['item_id'], + '$linktitle' => t('View $name\'s profile'), '$profile_url' => $profile_link, '$name' => $profile_name, '$sparkle' => $sparkle, diff --git a/mod/search.php b/mod/search.php index a6a4b613f..561bb6c62 100644 --- a/mod/search.php +++ b/mod/search.php @@ -113,6 +113,7 @@ function search_content(&$a) { $o .= replace_macros($tpl,array( '$id' => $item['item_id'], + '$linktitle' => t('View $name\'s profile'), '$profile_url' => $profile_link, '$name' => $profile_name, '$sparkle' => $sparkle, -- cgit v1.2.3