From a428628f55e3d119e8b35446e843b0c11eeda04a Mon Sep 17 00:00:00 2001 From: bgigon Date: Tue, 20 Jul 2004 16:15:14 +0000 Subject: [PATCH] Fix little bug in display --- setup/lang.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/lang.php b/setup/lang.php index 946fef4547..77d544cba7 100644 --- a/setup/lang.php +++ b/setup/lang.php @@ -100,7 +100,7 @@ foreach($GLOBALS['phpgw_setup']->translation->sql->line_rejected as $badline) { $_f_buffer = split("/", $badline["appfile"]); - $langfile = $_f_buffer[count($_f_buffer)-1] . " " . lang("in") . " " . $_f_buffer[count($_f_buffer)-2] . " " . lang("module"); + $langfile = $_f_buffer[count($_f_buffer)-1] . " " . lang("in") . " " . $_f_buffer[count($_f_buffer)-3] . " " . lang("module"); $str .= lang("File") . " : " . $langfile . "
"; $str .= lang("Line") . " : " . $badline["line"] . "
";