diff options
author | Kevin Chabowski <kevin@kch42.de> | 2011-11-13 21:32:29 +0100 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2011-11-13 21:32:29 +0100 |
commit | ecac90f5e5db1ca82d4653047636ef4c2c749015 (patch) | |
tree | ed6dc24f44f69453b2805e30bfd473aad60a0afd /ratatoeskr/frontend.php | |
parent | 48972a847fe48f5e2919caf1d777262c6f0121d8 (diff) | |
download | ratatoeskr-cms-ecac90f5e5db1ca82d4653047636ef4c2c749015.tar.gz ratatoeskr-cms-ecac90f5e5db1ca82d4653047636ef4c2c749015.tar.bz2 ratatoeskr-cms-ecac90f5e5db1ca82d4653047636ef4c2c749015.zip |
"%root%" in articles will be replaced with a path to page root.
Diffstat (limited to 'ratatoeskr/frontend.php')
-rw-r--r-- | ratatoeskr/frontend.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ratatoeskr/frontend.php b/ratatoeskr/frontend.php index 7995093..a2f1f8d 100644 --- a/ratatoeskr/frontend.php +++ b/ratatoeskr/frontend.php @@ -97,8 +97,8 @@ function article_transform_ste($article, $lang) "urlname" => $article->urlname, "fullurl" => htmlesc("$rel_path_to_root/$lang/{$article->section->name}/{$article->urlname}"), "title" => htmlesc($article->title[$lang]->text), - "text" => textprocessor_apply_translation($article->text[$lang]), - "excerpt" => textprocessor_apply_translation($article->excerpt[$lang]), + "text" => textprocessor_apply_translation(str_replace("%root%", $rel_path_to_root, $article->text[$lang])), + "excerpt" => textprocessor_apply_translation(str_replace("%root%", $rel_path_to_root, $article->excerpt[$lang])), "custom" => $article->custom, "status" => $article->status, "section" => section_transform_ste($article->section, $lang), |