From 5fc08b515ea9e1e5790706c43d356765910d1105 Mon Sep 17 00:00:00 2001 From: Cerdic <cedric@yterium.com> Date: Thu, 20 Jan 2011 07:40:40 +0000 Subject: [PATCH] coquille et tabulation dans r16988 --- ecrire/req/sqlite_fonctions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ecrire/req/sqlite_fonctions.php b/ecrire/req/sqlite_fonctions.php index 074dcd23a8..060d47873f 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); } -- GitLab