mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-06 01:28:19 +01:00
Fix: functions "ereg", "ereg_replace", "eregi", "eregi_replace" is deprecated since php 5.3.0
This commit is contained in:
@@ -51,7 +51,7 @@ print_fiche_titre($langs->trans("Tables")." ".ucfirst($conf->db->type),'','setup
|
||||
|
||||
// Define request to get table description
|
||||
$base=0;
|
||||
if (eregi('mysql',$conf->db->type))
|
||||
if (preg_match('/mysql/i',$conf->db->type))
|
||||
{
|
||||
$sql = "SHOW TABLE STATUS";
|
||||
$base=1;
|
||||
|
||||
Reference in New Issue
Block a user