To respect the url aliases generated by path.inc, all links printed with the l() function should refer to mysite/UID/view instead of mysite/UID.

Comments

agentrickard’s picture

As part of this, I need to refactor most menu 'title' elements and l() function to use the "My sitename.com" syntax.

New function:

  function mysite_sitename() {
    $sitename = t('My !site' , array('!site' => variable_get('site_name', 'drupal')));    
    return $sitename;
  }

This will eliminate redundant translation strings.

agentrickard’s picture

Status: Active » Closed (fixed)

Fixed in HEAD.