2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00

Avoid array error

This commit is contained in:
azammitdcarf
2009-03-18 01:50:21 +00:00
parent e5199dacc0
commit 580a247e56

View File

@@ -45,7 +45,7 @@ function translate_array(&$a,$b)
{
foreach ($a as &$row)
foreach($b as $el)
$row[$el] = T_($row[$el]);
if (isset($row[$el])) $row[$el] = T_($row[$el]);
}