mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2026-02-07 16:41:48 +01:00
Fix: functions "ereg", "ereg_replace", "eregi", "eregi_replace" is deprecated since php 5.3.0
This commit is contained in:
@@ -103,7 +103,7 @@ class modExternalRss extends DolibarrModules
|
||||
{
|
||||
while ($obj = $this->db->fetch_object($result))
|
||||
{
|
||||
if (eregi('EXTERNAL_RSS_TITLE_([0-9]+)',$obj->name,$reg))
|
||||
if (preg_match('/EXTERNAL_RSS_TITLE_([0-9]+)/i',$obj->name,$reg))
|
||||
{
|
||||
// Definie la boite si on a trouvee une ancienne configuration
|
||||
$this->boxes[$reg[1]][0] = "(ExternalRSSInformations)";
|
||||
|
||||
Reference in New Issue
Block a user