mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-21 17:01:19 +01:00
Fix: functions "ereg", "ereg_replace", "eregi", "eregi_replace" is deprecated since php 5.3.0
This commit is contained in:
@@ -927,7 +927,7 @@ function version_os()
|
||||
phpinfo();
|
||||
$chaine = ob_get_contents();
|
||||
ob_end_clean();
|
||||
preg_match('/System </td><td class="v">([^<]*)</td>/i',$chaine,$reg);
|
||||
preg_match('/System <\/td><td class="v">([^<]*)<\/td>/i',$chaine,$reg);
|
||||
$osversion=$reg[1];
|
||||
return $osversion;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user