1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-06-28 20:45:00 +03:00

fix router

This commit is contained in:
Mzhelskiy Maxim 2010-07-06 12:19:17 +00:00
parent 603f40c616
commit 3f2251027d
2 changed files with 2 additions and 1 deletions

View file

@ -51,7 +51,7 @@ class ActionTag extends Action {
/**
* Получаем тег из УРЛа
*/
$sTag=urldecode($this->sCurrentEvent);
$sTag=$this->sCurrentEvent;
/**
* Передан ли номер страницы
*/

View file

@ -124,6 +124,7 @@ class Router extends Object {
if (isset($aRequestUrl[0]) and @substr($aRequestUrl[0],0,1)=='?') {
$aRequestUrl=array();
}
$aRequestUrl = array_map('urldecode',$aRequestUrl);
return $aRequestUrl;
}
/**