Skip to content

Commit 530485b

Browse files
authored
remplacement de mysqlcheck par mariadbcheck si Debian13
On continue à utiliser "mysqlcheck" si "mariadbcheck" n'existe pas
1 parent d696572 commit 530485b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

install/backup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
echo "Checking table " . $table . "...";
9797
$check_command = 'mariadbcheck';
9898
if (! file_exists('/usr/bin/mariadbcheck')) {
99-
$check_command = 'mysqlcheck'
99+
$check_command = 'mysqlcheck';
100100
}
101101
system($check_command . ' ' . $str_db_connexion . ' --auto-repair --silent --tables ' . $table);
102102
echo "OK" . "\n";

0 commit comments

Comments
 (0)