From 2fc54ccf66c3129a3bb37c836a77be12a774dfca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20FRANCE?= Date: Thu, 4 Oct 2018 20:23:58 +0200 Subject: [PATCH] PEAR.NamingConventions.ValidFunctionName.NotCamelCaps --- htdocs/core/class/utils.class.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/htdocs/core/class/utils.class.php b/htdocs/core/class/utils.class.php index c6c6b8914a1..cbd9fb8fcff 100644 --- a/htdocs/core/class/utils.class.php +++ b/htdocs/core/class/utils.class.php @@ -410,13 +410,13 @@ class Utils if ($compression == 'gz' or $compression == 'bz') { - $this->backup_tables($outputfiletemp); + $this->backupTables($outputfiletemp); dol_compress_file($outputfiletemp, $outputfile, $compression); unlink($outputfiletemp); } else { - $this->backup_tables($outputfile); + $this->backupTables($outputfile); } $this->output = ""; @@ -836,7 +836,7 @@ class Utils * @param string $tables Table name or '*' for all * @return int <0 if KO, >0 if OK */ - function backup_tables($outputfile, $tables='*') + function backupTables($outputfile, $tables='*') { global $db, $langs; global $errormsg; @@ -996,4 +996,4 @@ class Utils return 1; } -} \ No newline at end of file +}