- Missed an i18n();

This commit is contained in:
dave 2006-10-17 07:04:11 +00:00
parent e3abff348b
commit 5e26bd1395

View File

@ -660,7 +660,7 @@ class TableEditor
$pos = strpos($n, "|");
$n2 = "";
if($pos != false) {
$n2 = substr($n, $pos + 1).' ';
$n2 = i18n(substr($n, $pos + 1)).' ';
$n = substr($n, 0, $pos);
}