forked from Wavyzz/dolibarr
Fix: functions "ereg", "ereg_replace", "eregi", "eregi_replace" is deprecated since php 5.3.0
This commit is contained in:
@@ -102,8 +102,8 @@ if ($resql)
|
||||
{
|
||||
$property[$i]['istime']=false;
|
||||
}
|
||||
if (eregi('varchar',$property[$i]['type'])
|
||||
|| eregi('text',$property[$i]['type']))
|
||||
if (preg_match('/varchar/i',$property[$i]['type'])
|
||||
|| preg_match('/text/i',$property[$i]['type']))
|
||||
{
|
||||
$property[$i]['ischar']=true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user