Remove warnings

This commit is contained in:
Laurent Destailleur 2019-05-28 12:54:35 +02:00
parent 2404e6a521
commit 1c3f519b1a

View File

@ -196,6 +196,7 @@ class Translate
$modulename = ''; $modulename = '';
// Search if a module directory name is provided into lang file name // Search if a module directory name is provided into lang file name
$regs=array();
if (preg_match('/^([^@]+)@([^@]+)$/i', $domain, $regs)) if (preg_match('/^([^@]+)@([^@]+)$/i', $domain, $regs))
{ {
$newdomain = $regs[1]; $newdomain = $regs[1];
@ -223,7 +224,7 @@ class Translate
return -1; return -1;
} }
foreach($this->dir as $keydir => $searchdir) foreach($this->dir as $searchdir)
{ {
// Directory of translation files // Directory of translation files
$file_lang = $searchdir.($modulename?'/'.$modulename:'')."/langs/".$langofdir."/".$newdomain.".lang"; $file_lang = $searchdir.($modulename?'/'.$modulename:'')."/langs/".$langofdir."/".$newdomain.".lang";