mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2026-02-08 00:52:01 +01:00
Fix: functions "ereg", "ereg_replace", "eregi", "eregi_replace" is deprecated since php 5.3.0
This commit is contained in:
@@ -40,7 +40,7 @@ class InterfaceNotification
|
||||
{
|
||||
$this->db = $DB ;
|
||||
|
||||
$this->name = eregi_replace('Interface','',get_class($this));
|
||||
$this->name = preg_replace('/^Interface/i','',get_class($this));
|
||||
$this->family = "notification";
|
||||
$this->description = "Triggers of this module send email notifications according to Notification module setup.";
|
||||
$this->version = 'dolibarr'; // 'experimental' or 'dolibarr' or version
|
||||
|
||||
Reference in New Issue
Block a user