Hi,
I have been working with Drupal for 2 days know and here come my first questions.
1. The top navigation "Home -> Category -> ..." doesn't seem to work properly. Though you can choose categories of links or links posted by a certain user, there will be nothing more than a link to "Home" up there. No indication where exactly you are right now and how to get back. When one of the sites is set as home, the Home link even dissapears completely!
How can I fix this?
2. When you are viewing a category of links http://www.b78.de/test/?q=userlink/1/term/1, there pops up another tab, and this tab doesn't link to itself as it should but to another site, because the last digit, the categorie number (or however you call it) doesn't get submitted.
I found the piece of code for this one, but haven't figuered out how to change it that it works properly.
//
//
// If we are looking at a listing of links for a given term, add
// another tab for the listing...
//
//
if (arg(2) == 'term' && is_numeric(arg(3))) {
$term = taxonomy_get_term(arg(3));
$items[] = array('path' => 'userlink/'. $uid . '/term', 'title' => t("%who %termname links", array('%who' => $uname ? "$uname's" : 'all', '%termname' => $term->name)),
'callback' => 'userlink_page_termlinks',
'access' => user_access('view all userlinks'),