diff --git a/htdocs/compta/sociales/list.php b/htdocs/compta/sociales/list.php
index baa1f57a307..5f7f7d0fc0a 100644
--- a/htdocs/compta/sociales/list.php
+++ b/htdocs/compta/sociales/list.php
@@ -281,7 +281,7 @@ if ($resql)
print '
';
if ($obj->periode)
{
- print 'jdate($obj->periode)).'">'.dol_print_date($db->jdate($obj->periode),'day').'';
+ print 'jdate($obj->periode)).'">'.dol_print_date($db->jdate($obj->periode), 'day').'';
}
else
{
diff --git a/htdocs/install/step2.php b/htdocs/install/step2.php
index b553166e8bc..172d2510287 100644
--- a/htdocs/install/step2.php
+++ b/htdocs/install/step2.php
@@ -453,7 +453,7 @@ if ($action == "set")
// Replace the prefix in table names
if ($dolibarr_main_db_prefix != 'llx_')
{
- $buffer=preg_replace('/llx_/i',$dolibarr_main_db_prefix,$buffer);
+ $buffer=preg_replace('/llx_/i', $dolibarr_main_db_prefix,$buffer);
}
dolibarr_install_syslog("step2: request: " . $buffer);
print "\n";
|