diff options
Diffstat (limited to 'ratatoeskr/frontend.php')
-rw-r--r-- | ratatoeskr/frontend.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ratatoeskr/frontend.php b/ratatoeskr/frontend.php index eff7511..ffb2941 100644 --- a/ratatoeskr/frontend.php +++ b/ratatoeskr/frontend.php @@ -668,7 +668,7 @@ function frontend_url_handler(&$data, $url_now, &$url_next) { throw new NotFoundError(); } - $ste->vars["current"]["tag"] = tag_transform_ste($tag); + $ste->vars["current"]["tag"] = tag_transform_ste($tag, $lang); } else { @@ -681,8 +681,8 @@ function frontend_url_handler(&$data, $url_now, &$url_next) throw new NotFoundError(); } - if(count($path == 0)) - $ste->vars["current"]["section"] = section_transform_ste($section); + if(count($path)== 0) + $ste->vars["current"]["section"] = section_transform_ste($section, $lang); else { try @@ -693,7 +693,7 @@ function frontend_url_handler(&$data, $url_now, &$url_next) { throw new NotFoundError(); } - $ste->vars["current"]["article"] = article_transform_ste($article); + $ste->vars["current"]["article"] = article_transform_ste($article, $lang); if(isset($_GET["comment"])) { |