From 7ae55f0ba6038cd7ce96e29b1690191882d8b70a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Lucas?= Date: Tue, 30 Apr 2013 10:17:38 +0200 Subject: [PATCH] Fix string. re #40 --- base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base.php b/base.php index 031ea29..874569d 100644 --- a/base.php +++ b/base.php @@ -591,7 +591,7 @@ class PageQueryResult extends Page Base::clearDb (); list ($array, $totalNumber) = Book::getBooksByQuery ($this->query, $this->n, $i); array_push ($this->entryArray, new Entry ($key, DB . ":query:{$i}", - count($array) . " book found", "text", + str_format (localize ("bookword", count($array)), count($array)), "text", array ( new LinkNavigation ("?" . DB . "={$i}&page=9&query=" . $this->query)))); $i++; }