Changeset 386 for trunk/Common/Page.php


Ignore:
Timestamp:
Jan 24, 2012, 3:17:35 PM (13 years ago)
Author:
chronos
Message:
  • Opraveno: Řešení zobrazování navigačního pruhu.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Common/Page.php

    r385 r386  
    3636    foreach($this->NavigationPath as $Index => $PathItem)
    3737    {
    38       if($URL != '') $URL .= '/'.$PathItem['URL'];
     38      if($PathItem['URL'] != '') $URL .= '/'.$PathItem['URL'];
    3939      if($Index > 0) $Navigation .= ' > ';
    4040      $Navigation .= '<a href="'.$this->System->Config['Web']['RootFolder'].
    41         $URL.'">'.$PathItem['Name'].'</a>';
     41        $URL.'/">'.$PathItem['Name'].'</a>';
    4242    }
    4343
     
    7272    $Output = '<div id="Footer">
    7373   <i>| Správa webu: '.$this->System->Config['Web']['Admin'].' | e-mail: '.$this->System->Config['Web']['AdminEmail'].' |';
    74     if($this->ShowRuntimeInfo == true) $Output .= ' Doba generování: '.$Time.' s / '.ini_get('max_execution_time').' s | Použitá paměť: '.HumanSize(memory_get_peak_usage(FALSE)).' / '.ini_get('memory_limit').'B |';
     74    if($this->ShowRuntimeInfo) $Output .= ' Doba generování: '.$Time.' s / '.ini_get('max_execution_time').' s | Použitá paměť: '.HumanSize(memory_get_peak_usage(FALSE)).' / '.ini_get('memory_limit').'B |';
    7575  $Output .= '</i></div></body></html>';
    7676    return($Output);
Note: See TracChangeset for help on using the changeset viewer.