mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-19 16:49:06 +01:00
generate_lang_file.php : fix infinity loop case in parse_addon_file() function
This commit is contained in:
parent
8e1e747754
commit
a42bcb0e3d
1 changed files with 17 additions and 1 deletions
|
@ -376,24 +376,40 @@ function parse_addon_file($file) {
|
||||||
$res='';
|
$res='';
|
||||||
for ($i=$pos+3;$i<strlen($line);$i++) {
|
for ($i=$pos+3;$i<strlen($line);$i++) {
|
||||||
if (empty($quote)) {
|
if (empty($quote)) {
|
||||||
if ($line[$i]=='\\') {
|
// Quote char not detected : try to detect it
|
||||||
|
if ($line[$i]=='\\' || $line[$i]==" " || $line[$i]=="\t") {
|
||||||
|
// Space or escape char : pass
|
||||||
$i++;
|
$i++;
|
||||||
}
|
}
|
||||||
elseif ($line[$i]=='"' || $line[$i]=="'") {
|
elseif ($line[$i]=='"' || $line[$i]=="'") {
|
||||||
|
// Quote detected
|
||||||
$quote=$line[$i];
|
$quote=$line[$i];
|
||||||
}
|
}
|
||||||
|
elseif ($line[$i]=='$' || $line[$i]==')') {
|
||||||
|
// Variable translation not possible or end function call detected
|
||||||
|
$offset=$i;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
// Unknown case : continue
|
||||||
|
$i++;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
elseif (!empty($quote)) {
|
elseif (!empty($quote)) {
|
||||||
|
// Quote char already detected : try to detect end quote char
|
||||||
if ($line[$i]=='\\') {
|
if ($line[$i]=='\\') {
|
||||||
|
// Escape char detected : pass this char and the following one
|
||||||
$res.=$line[$i];
|
$res.=$line[$i];
|
||||||
$i++;
|
$i++;
|
||||||
$res.=$line[$i];
|
$res.=$line[$i];
|
||||||
}
|
}
|
||||||
elseif ($line[$i]==$quote) {
|
elseif ($line[$i]==$quote) {
|
||||||
|
// End quote char detected : set offset for next detection and break this one
|
||||||
$offset=$i;
|
$offset=$i;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
// End quote char not detected : append current char to result
|
||||||
$res.=$line[$i];
|
$res.=$line[$i];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue