Ignore:
Timestamp:
Jan 20, 2016, 11:16:40 AM (8 years ago)
Author:
chronos
Message:
  • Added: More page redirections.
  • Modified: Translated Log module and part of Admin module.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Redirection/Redirection.php

    r853 r857  
    2424    Header($_SERVER['SERVER_PROTOCOL'].' 301 Moved Permanently');
    2525    Header('Location: '.$Location);
    26     return('<h3 align="center">Požadovaná stránka byla přesunuta do nového umístění.</h3>');
     26    return('<h3 align="center">'.T('').'</h3>');
    2727  }
    2828
     
    4444      if($this->System->PathItems[0] == 'download.php') $Output = $this->Redirect($this->System->Link('/download/'));
    4545      if($this->System->PathItems[0] == 'serverlist.php') $Output = $this->Redirect($this->System->Link('/server/'));
     46      if($this->System->PathItems[0] == 'info.php') $Output = $this->Redirect($this->System->Link('/info/'));
     47      if($this->System->PathItems[0] == 'userlist.php') $Output = $this->Redirect($this->System->Link('/users/'));
     48      if($this->System->PathItems[0] == 'promotion.php') $Output = $this->Redirect($this->System->Link('/promotion/'));
     49      if($this->System->PathItems[0] == 'log.php') $Output = $this->Redirect($this->System->Link('/log/'));
    4650      if(count($this->System->PathItems) > 1)
    4751      {
Note: See TracChangeset for help on using the changeset viewer.