Skip to content
Snippets Groups Projects
Commit 88fc7dbc authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix remove warning

parent ef575166
Branches
Tags
No related merge requests found
......@@ -848,7 +848,7 @@ class DolibarrModules // Can not be abstract, because we need to insta
$resql=$this->db->query($sql);
if (! $resql) $err++;
$note=json_encode(array('authorid'=>$user->id, 'ip'=>$_SERVER['REMOTE_ADDR']));
$note=json_encode(array('authorid'=>$user->id, 'ip'=>(empty($_SERVER['REMOTE_ADDR'])?'':$_SERVER['REMOTE_ADDR'])));
$sql = "INSERT INTO ".MAIN_DB_PREFIX."const (name, value, visible, entity, note) VALUES";
$sql.= " (".$this->db->encrypt($this->const_name,1);
......
......@@ -141,7 +141,7 @@ class CodingPhpTest extends PHPUnit_Framework_TestCase
$langs=$this->savlangs;
$db=$this->savdb;
include DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
include_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
$filesarray = dol_dir_list(DOL_DOCUMENT_ROOT, 'files', 1, '\.php', null, 'fullname');
foreach($filesarray as $key => $file)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment