From d4e09e003ca329acfe61deb59ccd8eaf043acd35 Mon Sep 17 00:00:00 2001 From: Kevin Chabowski Date: Sat, 8 Oct 2011 13:29:07 +0200 Subject: Minor bugfixes... * Corrected a SQL query in models.php. * Passed $lang to *_ste_transform functions in frontend.php. --- ratatoeskr/frontend.php | 8 ++++---- ratatoeskr/sys/models.php | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'ratatoeskr') 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"])) { diff --git a/ratatoeskr/sys/models.php b/ratatoeskr/sys/models.php index 0ec4111..0a14a3d 100644 --- a/ratatoeskr/sys/models.php +++ b/ratatoeskr/sys/models.php @@ -1772,7 +1772,7 @@ class Article { $obj = new self; $obj ->populate_by_sqlresult(qdb( - "SELECT `id`, `urltitle`, `title`, `text`, `excerpt`, `meta`, `custom`, `article_image`, `status`, `section`, `timestamp`, `allow_comments` FROM `PREFIX_articles` WHERE `urlname` = '%s'", $urlname + "SELECT `id`, `urltitle`, `title`, `text`, `excerpt`, `meta`, `custom`, `article_image`, `status`, `section`, `timestamp`, `allow_comments` FROM `PREFIX_articles` WHERE `urltitle` = '%s'", $urlname )); return $obj; } -- cgit v1.2.3-54-g00ecf