Changeset 915

Show
Ignore:
Timestamp:
06/05/10 00:26:20 (20 months ago)
Author:
ort
Message:

fix router and rss

Location:
trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/classes/actions/ActionMy.class.php

    r756 r915  
    8888                $this->Viewer_AddHtmlTitle($this->Lang_Get('user_menu_publication').' '.$this->oUserProfile->getLogin()); 
    8989                $this->Viewer_AddHtmlTitle($this->Lang_Get('user_menu_publication_blog')); 
    90                 $this->Viewer_SetHtmlRssAlternate(Router::GetPath('rss').'log/'.$this->oUserProfile->getLogin().'/',$this->oUserProfile->getLogin()); 
     90                $this->Viewer_SetHtmlRssAlternate(Router::GetPath('rss').'personal_blog/'.$this->oUserProfile->getLogin().'/',$this->oUserProfile->getLogin()); 
    9191                /** 
    9292                 * Устанавливаем шаблон вывода 
  • trunk/engine/classes/Router.class.php

    r852 r915  
    276276         */ 
    277277        static public function GetAction() { 
    278                 return self::$sAction;           
     278                return self::getInstance()->Standart(self::$sAction);            
    279279        } 
    280280