diff --git a/ecrire/inc_utils.php b/ecrire/inc_utils.php
index 32626bf4087c18366b838ef9a8916f2166ba44bd..206a92d0bc8c245bb538cce7903465c8ebebe932 100644
--- a/ecrire/inc_utils.php
+++ b/ecrire/inc_utils.php
@@ -622,7 +622,7 @@ function generer_url_ecrire($script, $args="", $no_entities=false) {
 
 	if (substr($site,-1) == '/') $site = substr($site, 0, -1);
 	if (!$no_entities) $args = str_replace('&', '&', $args);
-	$ext =  (ereg('.php[3]?$', $script) ? '' :_EXTENSION_PHP).($args ? '?' : "");
+	$ext=(ereg('.php[3]?$', $script) ? '' :_EXTENSION_PHP).($args ? '?' : "");
 
 	return "$site/$script$ext$args";
 }