diff --git a/ecrire/req/sqlite_fonctions.php b/ecrire/req/sqlite_fonctions.php
index 074dcd23a854cecbda57af62a0b519a38c4be1d5..060d47873fd3fedb4fe89adf71d3119ef8a1a4cb 100644
--- a/ecrire/req/sqlite_fonctions.php
+++ b/ecrire/req/sqlite_fonctions.php
@@ -107,8 +107,8 @@ function _sqlite_func_ceil($a) {
 
 // http://doc.spip.org/@_sqlite_func_concat
 function _sqlite_func_concat () {
-	$a = func_get_args();
-    return join('',$args);
+	$args = func_get_args();
+	return join('',$args);
 }