Ignore:
Timestamp:
Apr 22, 2010, 3:11:32 PM (14 years ago)
Author:
laurent.duretz
Message:

Issue 1521 : report trunk on branch 2.0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.0/include/functions_html.inc.php

    r5254 r5938  
    240240  global $conf;
    241241
    242   $output = '<a href="'.PHPWG_ROOT_PATH.$conf['home_page'].'">'.l10n('no_category').'</a>';
     242  $output = '';
     243  $is_first = true;
    243244
    244245  foreach ($cat_informations as $cat)
     
    254255      );
    255256
    256     $output.= $conf['level_separator'];
     257    if ($is_first)
     258    {
     259      $is_first=false;
     260    }
     261    else
     262    {
     263      $output.= $conf['level_separator'];
     264    }
    257265
    258266    if ( !isset($url) )
Note: See TracChangeset for help on using the changeset viewer.