From 5e26bd1395b52039b9cb815b14d4ab812d0cef08 Mon Sep 17 00:00:00 2001 From: dave Date: Tue, 17 Oct 2006 07:04:11 +0000 Subject: [PATCH] - Missed an i18n(); --- tableeditor.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tableeditor.class.php b/tableeditor.class.php index c8e8b61..8cb3753 100644 --- a/tableeditor.class.php +++ b/tableeditor.class.php @@ -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); }