From 3e6527bab38623873b3363f9096b363a41a06da8 Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Wed, 9 Mar 2011 01:37:41 +0100 Subject: [PATCH 1/2] Fix a MySQL-ism (closes issue 628) --- src/IDF/Views.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/IDF/Views.php b/src/IDF/Views.php index cb44ce6..685eb83 100644 --- a/src/IDF/Views.php +++ b/src/IDF/Views.php @@ -378,7 +378,7 @@ class IDF_Views // Count members $db =& Pluf::db(); - $sql = "SELECT count(id) as `nb` FROM indefero_users WHERE first_name != '---'"; + $sql = "SELECT count(id) as nb FROM indefero_users WHERE first_name != '---'"; $ret = $db->select ($sql); $forgestats['members'] = $ret[0]['nb']; From 96bc198b0f8546250678f40b917caa566438d7f4 Mon Sep 17 00:00:00 2001 From: Thomas Keller Date: Mon, 14 Mar 2011 12:50:58 +0100 Subject: [PATCH 2/2] Added two more translators to AUTHORS and mark who is in charge for the Czech translation. --- AUTHORS | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index 123468b..f4be9ef 100644 --- a/AUTHORS +++ b/AUTHORS @@ -14,10 +14,11 @@ Much appreciated contributors (in alphabetical order): Patrick Georgi Ciaran Gultnieks Julien Issler + Jerry - Chinese translation Benjamin Jorand - Mercurial support Mehdi Kabab Thomas Keller - Monotone support, German translation - Denis Kot + Denis Kot - Russian translation Nicolas Lassalle - Subversion support William Martin Charles Melbye @@ -27,7 +28,8 @@ Much appreciated contributors (in alphabetical order): Fernando Sayago Gil - Spanish translation Vladimir Solomatin Samuel Suther - German translation - Jakub Viták + Janez Troha - Slovenian translation + Jakub Viták - Czech translation And all the nice users who spent time reporting issues and promoting the project. The project could not live without them.